Add account balances and profit information to a letter
Add account balances and profit information to create more personalized and informative letters for your clients, showing them key financial data directly in your communication.
Follow these steps to add account balances and profit figures to a letter.
Add an account balance
- SelectFile, thenReport Designer.
- Select the+next to the Letters folder.
- Double-click the letter you want to edit.
- Save a backup (recommended):
- SelectFile, thenSave As.
- Give your letter a new name.
- Select where you want the balance to display.
- SelectInsert, thenFormula.
- Expand .
- Select theAmountvariable to insert[ChartofAccountsActivity.Core.Amount]in the Formula pane.
- SelectOK.
- In Cell Properties, select the following:
- Grouping type:Accounts
- Grouping content: Enter the account number (for example, 101)
- Period:CY(Current year-to-date)
- Amount type:BA(balance)
- Basis:RPT(report)
- SelectOKto save.
Add the year-to-date net profit amount
- Select where you want the profit to display.
- SelectInsert, thenFormula.
- Expand .
- Select theAmountvariable to insert[ChartofAccountsActivity.Core.Amount]in the Formula pane.
- In Cell Properties, select the following:
- Grouping type:Account Classification
- Grouping content: INC (Income)
- Period:CY(Current year-to-date)
- Amount type:BA(balance)
- Basis:RPT(report)
- Select the plus (+) Operator button.
- Select a Grouping content value to include in the formula, then the plus (+) Operator button. Repeat this step for each of the following Grouping content values:
- OI (Other Income)
- COS (Cost of Sales)
- EXP (Expense)
- INT (Interest)
- TAX (Tax)
- Select the multiply (*) Operator button, the minus (-) Operator button, then enter1in theAmountfield (for example, *-1).
- SelectOKto save the formula.
The formula displays in the letter as follows:
Your current YTD profit is:
$[(Variable(ChartofAccountsActivity.Core.Amount,Grouping:Account Classification(INC),CY,BA,RPT) + Variable(ChartofAccountsActivity.Core.Amount,Grouping:Account Classification(OI),CY,BA,RPT) + Variable(ChartofAccountsActivity.Core.Amount,Grouping:Account Classification(COS),CY,BA,RPT) + Variable(ChartofAccountsActivity.Core.Amount,Grouping:Account Classification(EXP),CY,BA,RPT) + Variable(ChartofAccountsActivity.Core.Amount,Grouping:Account Classification(OE),CY,BA,RPT) + Variable(ChartofAccountsActivity.Core.Amount,Grouping:Account Classification(INT),CY,BA,RPT) + Variable(ChartofAccountsActivity.Core.Amount,Grouping:Account Classification(TAX),CY,BA,RPT)) * -1]
Add the month-to-date net profit amount
You can change the formula to month-to-date income by repeating the previous steps and changing the period from CY (current year) to
CP
(current month).The formula displays in the letter as follows:
Your current MTD profit is:
$[(Variable(ChartofAccountsActivity.Core.Amount,Grouping:Account Classification(INC),CP,BA,RPT) + Variable(ChartofAccountsActivity.Core.Amount,Grouping:Account Classification(OI),CP,BA,RPT) + Variable(ChartofAccountsActivity.Core.Amount,Grouping:Account Classification(COS),CP,BA,RPT) + Variable(ChartofAccountsActivity.Core.Amount,Grouping:Account Classification(EXP),CP,BA,RPT) + Variable(ChartofAccountsActivity.Core.Amount,Grouping:Account Classification(OE),CP,BA,RPT) + Variable(ChartofAccountsActivity.Core.Amount,Grouping:Account Classification(INT),CP,BA,RPT) + Variable(ChartofAccountsActivity.Core.Amount,Grouping:Account Classification(TAX),CP,BA,RPT)) * -1]