Skip to main content

Excel functions for financial audit

Reference live financial audit data with the Excel add-in and formula builder

Overview

Fieldguide's Excel add-in lets you dynamically insert financial audit data from Fieldguide into an Excel file. You can insert accounts, trial balance values, and engagement information by using the custom Excel functions it provides. The add-in can sync changes into the Excel file when they're made to the data in Fieldguide (one-way sync).

How it works

The add-in provides Fieldguide-specific Excel functions (used by formulas) designed to reference specific pieces of your Fieldguide data. When you insert a Fieldguide function into a cell, Excel will evaluate it and populate the cell with your actual Fieldguide data. Use the add-in's formula builder to help you select the desired types of data and build formulas with the correct functions and arguments.

Just like with any Excel formula, you can include references, constants, operators, and functions. You can use references to make formulas that evaluate based off other cells' values. For example, this formula pulls in the account name from Fieldguide that matches the account number in cell A1: =FG.ACCOUNT("C", A1, "CNAME", 0).

Formula values refresh automatically when you open an Excel file. To refresh data manually, click Sync in the add-in. View the last sync time at the bottom of the add-in.

Key terminology

Using Fieldguide's Excel functions requires an understanding of Excel's functionality, including formulas and functions. Below are some key terms and definitions to help you get started. Refer to Microsoft's documentation for additional information.

Key Term

Definition & Examples

Formula

A value entered into a cell that performs a calculation or action.

  • =TODAY()

  • =SUM(A1, A2)

  • =FG.ACCOUNT("C", A1, "CNAME", 0)

Function

A predefined Excel formula.

  • TODAY

  • SUM

  • FG.ACCOUNT

Argument

Information passed into a function in between the parenthesis. Functions vary in their required syntax for arguments.

  • A1, A2 are arguments in the formula =SUM(A1, A2).

  • "C", A1, "CNAME", 0 are arguments in the formula =FG.ACCOUNT("C", A1, "CNAME", 0).

Reference

A reference to another cell inside a formula or function.

  • A1 refers to the cell in column A and row 1.

  • The formula =SUM(A1, A2) will display a sum of the values from cells A1 and A2.

  • The formula =FG.ACCOUNT("C", A1, "CNAME", 0) will display the name of the account based on the account number in cell A1.

Did this answer your question?