Skip to main content
Hi,

 

I need to create a custom formula field on Opportunity object that will sum 2 currency fields -Annual_Recurring_Revenue_(ARR) + Manager_Forecast_Amount. The trick is that i need to add the value from Annual_Recurring_Revenue_(ARR) field when the opportunity is in stage WON only, if it's not in stage WON it should give the field the value $0. 

 

Thank you for helping!

 

 
8 件の回答
  1. 2019年9月25日 15:10
    Thanks! 

     

    Okay so you Formula should be something like this then 

     

     

    IF( IsWon = TRUE, Annual_Recurring_Revenue__c , Manager_Forecast_Amount__c )

     

     
0/9000