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 Antwort
  1. 28. Nov. 2021, 21:50

    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