Skip to main content
there is a requirement to display the amount according to the region like if the region is VIC then amount will be 25000.

 

I have tried using 

 

IF  "{MERGEFIELD  ACCOUNT_BDM_LIFE_RISK_REGION}" =  "QLD"  "85000" ""  \* MERGEFORMAT  \* 

 

but it doesnt help much. nothing was displayed.
3 answers
  1. Sep 19, 2014, 6:39 PM
    I think creating a Formula Field would be much simpler and would give you a greater control too. Like as below:

     

    CASE(

    ACCOUNT_BDM_LIFE_RISK_REGION__c,

    'QLD', 8500,

    'VIC', 2500,

    NULL

    )

    You can then use that as the Merge Field in the template.

0/9000