+ Start a Discussion
Niya AdminNiya Admin 

New field

Hello all,

I have a checkbox field and I want to add a new field derived of date when the checkbox is "marked". 

Thank you for your help.
ShawnHepkerShawnHepker

This can be done with a workflow field update. The rule criteria will be something like:

AND(ISCHANGED( fieldName__c ), fieldName__c = true)

The field update formula will be:
TODAY()