Don't have an account?
Search for an answer or ask a question of the zone or Customer Support.
You need to sign in to do that
Sign in to start searching questions
Signup for a Developer Edition
Sign in to start a discussion
Yourdate_time__c +( 15/1440)
DATETIMEVALUE( TEXT( DATETIMEVALUE(TEXT({!YourDateTimeVariable})) + ((FLOOR(VALUE(LEFT({!VariableinMinutes},2)))) / (24*60)) ))
variableinMinutes like "15 mins"
like this way i did in my task to add value dynamically in to my datetime variable
Try this way.
Hope this helps you
Let me know if this helps you. Kindly mark it as solved so that it may help others in future.
Thanks and Regards
All Answers
Date_Time_Field__c + 15/60/24
If you mean you want to increment an editable date time field, then you need to go to a PB.
You could then use the same formula to increment the date time field.
Regards
Andrew
Try this way.
Hope this helps you
Let me know if this helps you. Kindly mark it as solved so that it may help others in future.
Thanks and Regards
DATETIMEVALUE(
TEXT(
DATETIMEVALUE(TEXT({!YourDateTimeVariable}))
+ ((FLOOR(VALUE(LEFT({!VariableinMinutes},2)))) / (24*60))
)
)
variableinMinutes like "15 mins"
like this way i did in my task to add value dynamically in to my datetime variable