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

Need Help with Date Time Formula
What we need is to show the difference between the first Completed Activity and the Opportunity Created Date.
The problem is that the LastActivityDate is a Date field.
Should be like this
DATETIMEVALUE(LastActivityDate + The Current Hour(of NOW() ))
I have been trying and reading a lot of post regarding this but it all does not make sense.
Can anyone help me with this?
The problem is that the LastActivityDate is a Date field.
Should be like this
DATETIMEVALUE(LastActivityDate + The Current Hour(of NOW() ))
I have been trying and reading a lot of post regarding this but it all does not make sense.
Can anyone help me with this?
Please try this
Text(LastActivityDate) +'The Current Hour ( of '+ Text(Now())+' )'
Thanks,
Shiva
You can use this.
Hope this helps you!
Thanks and Regards
Sandhya
DATETIMEVALUE(Text( Last_Activity_Logged__c )+ MID(TEXT(Now()), 11, 10) but it keeps updating.. I think what I need now is to have an if but I dont know what will be my condition.
IF( hasActivity__c = TRUE, DATETIMEVALUE(Text( Last_Activity_Logged__c )+ MID(TEXT(Now()), 11, 10)), CreatedDate)
Tried this but same thing happen. Only if I can use isChanged in formula.