
We have an Evaluation Period - Start Date date field on the opportunity and I would like to calculate the opp age based off of this and not the created date. I am not sure how to build the AGE formula.
Evaluation_Period_Start_Date__c
Any advice is much appreciated.
Thanks,
Aaron
8 answers
Ok try a formula like this:
IF(
CASE(Stagename,
"Closed Won",1,
"Closed Lost",1,
0 ) =1 ,CloseDate,TODAY())
-
Evaluation_Period_Start_Date__c
If you want to use the "IsClosed" checkbox, then like this:
IF(IsClosed ,CloseDate,TODAY())
-
Evaluation_Period_Start_Date__c
Hi guys, Hello, I tried something like this but I get an error For this you'll need to create a number field formula field (with 0 decimal places) subtracting: Like this:
TODAY() - Evaluation_Period_Start_Date__c