Show TOC

 Example: Use of Variables

In a form with two axes, you want the rows to contain four fiscal years and the columns to contain revenues and a revenue value taking inflation into account, based on fiscal 2001:

Profitability report

Revenue

Test

$FYT

XXX,XXX,XXX

XXX,XXX,XXX

$FYT

XXX,XXX,XXX

XXX,XXX,XXX

$FYT

XXX,XXX,XXX

XXX,XXX,XXX

$FYT

XXX,XXX,XXX

XXX,XXX,XXX

The form contains variables for characteristic values, text variables and formula variables:

  • The characteristic fiscal year is used in the rows. Four consecutive fiscal years will be displayed, the first of which you need to enter when you run the report.

For this you enter local variable &$FY in the first line of the dialog box for characteristic values. You then enter &$FY+1 , &$FY+2 and &$FY+3 in the second, third and fourth lines, respectively. You cannot see the variables in the rows of the form.

  • In the dialog box where you enter texts, enter the text variable $FYT in the corresponding text fields. The text variable appears in the form (see above).

The text variable is to be replaced automatically in the report by the value of the fiscal year in the row. To do this, choose or the menu option Start of the navigation path Extras Next navigation step Variables Next navigation step Variables definition Next navigation step . Set the variable $FYT to be replaced automatically with the value in the From field of the characteristic ‘fiscal year’ (beginning in position 1 with a length of 4 characters). End of the navigation path

  • The revenue value Test is adjusted for inflation by the formula:

X001 / ( 1 + &$INFL) ** ( &$FYN - 2000)

where X001 is the revenue column. You specify the inflation rate &$INFL. The variable &$FYN is replaced automatically by the fiscal year for the row.

Nothing more needs to be specified for the formula variable &$INFL . You define the formula variable &$FYN to be replaced automatically by the value in the From field of the characteristic Fiscal year (beginning in the first position with a length of 4 characters).

If you run the report with the value 0.04 for &$INFL and 1998 for &$FY, you will thus receive the following detail list:

Profitability report

Revenue

Test

1998

950.00

1,155.82

1999

1,210.00

1,415.53

2000

1,380.00

1,552.31

2001

1,500.00

1,500.00