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
Harsh DodiyaHarsh Dodiya 

Workflow : Field Update, First Date/Time Update

Hello, 

I wants to have one custom field Suppose Test__data__c. Now New record is created and on updation I want this field to save the data.
1. If first update has been done within 1minute of record creation then Test__data__c=null
2. If first update done after 1 minute, then Test__data__c = Last Modified Date
3. If second update happens don't save it, Test__data__c must show first updates time.

I created Custom field, Created workflow with field update. I am able to save first update (If record updated after 1minute) but In my case if update happens second time the field is getting new updated time..

Can some one help me here 

PavanKPavanK
You can add one more conditio  checking Createddate==last modifieddate. This will help to identify if record was modified before or not.

Please mark this answer as best if it helped.
Harsh DodiyaHarsh Dodiya

Pavan,

Thank you, but I got the answer other way. In your solution issue will be if Update has been take in 30seconds date won't be same.