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개
  1. 2021년 11월 28일 오후 9: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