You need to sign in to do that
Don't have an account?

Last Modified Date (If Record update after 1minute)
Hello,
Requirement
1. I wants Last modified time of any of record.
2. Whenever new records been created, whenever first time record is updated that modified time should come as custom field.
3. If update has been done with in 1st minute(60seconds) the field should come as blank, if update has been done after 1minute the field should show last modified time.
Requirement
1. I wants Last modified time of any of record.
2. Whenever new records been created, whenever first time record is updated that modified time should come as custom field.
3. If update has been done with in 1st minute(60seconds) the field should come as blank, if update has been done after 1minute the field should show last modified time.
Write following code in the Formula Text Editor:
Explanation:
If (Modified DateTime not equal to Created DateTime){
if(NOW > modified DateTime+1 min ){
return Modified DateTime
}
else{return null
}
return null
}
If this solves your problem, mark this as Best Answer
All Answers
Write following code in the Formula Text Editor:
Explanation:
If (Modified DateTime not equal to Created DateTime){
if(NOW > modified DateTime+1 min ){
return Modified DateTime
}
else{return null
}
return null
}
If this solves your problem, mark this as Best Answer
Mritzi,
Thank you, I used below one and I got the result.
IF( LastModifiedDate <> CreatedDate ,
IF( NOW() > CreatedDate+ 1/(24*60), LastModifiedDate , null ), null
)
Can we get Time difference in another field. Suppose Record creation done at 11.40am and First update has taken place at 11.45am.Then field should show me 5minutes. Can you please help me with this
"Field should show me 5minutes"
It involves a lot of effort and i am not sure, if its worth the effort.
Because, we first need to mark "first update" that could well be acheived
but calculating time Difference, that is very difficult (as it could range from 1 second to more than a year)
Thank you for updates.
Is there any option we can use this via workflow or formula field, and it takes only first update for record.
If there is second update it will keep showing details about first updates only in particular field ??
Mritzi,
Thank you buddy. But Requirement is only for Workflow & Field update related.
Whenever first update happens after 1minute, it will show last modified time in given field. After that what ever update happens,that field won't be changed.
i have an doubt, at the time of creating the case the created date and lastmodified dates of time is not equal,the seconds are having difference,how can i solve this.
for this i want to create a lastmodified date formula field,but i dont have any idea to write it?