DefaultTranslate

Calculates translation by bypassing rules. This function overrides the Application settings and can be used in SubTranslate rules only.

Syntax

HS.DefaultTranslate(dRateForBalanceAccounts, dRateForFlowAccounts, bUsePVAForFlowAccounts, bUsePVAForBalanceAccounts)

Table 11-16 Syntax for DefaultTranslate Function

Parameter Description

dRateForBalanceAccounts

Number for rate

dRateForFlowAccounts

Number for rate

bUserPVAForFlowAccounts

True or False

bUsePVAForBalanceAccounts

True or False

Return Value

None.

Example

In this example, if the parent member is United States, then statements between the If...Then and End If statements are executed.

If HS.Parent.Member="UnitedStates" Then
 HS.DefaultTranslate .25, .27, True, False
End If