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
sekhar passamsekhar passam 

Work Flow and Formulas

if I change stage name in opportunity then automatically Date field(custom field) should be updated with current date using workflow?
Best Answer chosen by sekhar passam
Raj2019ssRaj2019ss
HI Sekhar Passam,

You can use Workflow Field Update,
Criteria : Use Formula evaluates true
                ISCHANGED(StageName)
Update a Field :
Use the Custom Date Field > Formula > Today()

Try and let me know if any issues. If it helps please select as solved and best answer

Thanks

All Answers

SandhyaSandhya (Salesforce Developers) 
Hi,

Refer below link where you have steps to be followed to create workflow rule.

https://developer.salesforce.com/forums/?id=906F00000008uDdIAI
 
 
Please mark it as solved if my reply was helpful. It will make it available for other as the proper solution.
                                             
Best Regards
Sandhya
 
Raj2019ssRaj2019ss
HI Sekhar Passam,

You can use Workflow Field Update,
Criteria : Use Formula evaluates true
                ISCHANGED(StageName)
Update a Field :
Use the Custom Date Field > Formula > Today()

Try and let me know if any issues. If it helps please select as solved and best answer

Thanks
This was selected as the best answer