Skip to main content

I need to add two currency fields together and then determine if the amount is > 10K for inclusion on a report.  What 

 

#Analytics is the best way to do this?  The currency fields are stored as two separate product records attached to one opportunity.

1 answer
  1. Nov 28, 2021, 9:50 PM

    You would want something like IF((CurrencyField1__c + CurrencyField2__c) > 10000)

     

    Replace the currency field with your field name and that would accomplish what you are asking for 

0/9000