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
atharva Vispute 3atharva Vispute 3 

Populate the Start date to Todays date when Status is changed to “In progress”.

Sai PraveenSai Praveen (Salesforce Developers) 
Hi ,

Can you confirm if you need Trigger or flow to achieve it . I can suggest the solution based on it.

Thanks,
 
atharva Vispute 3atharva Vispute 3
Hi Sai, I want to do it using flow.
Sai PraveenSai Praveen (Salesforce Developers) 
Hi,

Small clarification. Can you confirm on which object it is on so can share the flow for the same.

Thanks,
 
atharva Vispute 3atharva Vispute 3
on project object
Sai PraveenSai Praveen (Salesforce Developers) 
Hi,

The flow should be record Triggered flow on Project object and record updated scenerio as below.

User-added image
The formule will be as below.

AND(ISCHANGED({!$Record.Status__c}), TEXT({!$Record.Status__c}) ='In Progress')

Create a resource of type formule and return type as Date and write TODAY() in formula as shown below.

User-added imageNow add update record element and fill the details as below.

User-added imageNow save the flow and activate it. The entire flow looks as below.

User-added image

Let me know if you face any issues.

If this solution helps, Please mark it as best answer.

Thanks,