function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
babloo123babloo123 

Formula field not working

I am trying to mark a date when picklist value is changed to a certain value to that date.

IF(ISPICKVAL(Application_Status__c , "Accept"), TODAY(), NULL)

but issue is since the formula is evaluating to true daily it is changing this date field to today that is if I change to Accept today the date is today tomorrow it is changing to 18th and day after it is changing back to 19th instead I want it to be 17th. Can some one guide me. 

we dont have ISchanged function in formulas
Jerome LusinchiJerome Lusinchi
Hi,

Use workflow instead of formula.

Jerome
Shashikant SharmaShashikant Sharma
You could not achieve it via formula field as formula field can not derive change in value as it is evauated only at the time field is accessed.

You have to use a workflow or a trigger to get a Date field populated.