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

Formula to calculate elapsed seconds between events
Hello,
I need to create a formula field to calculate the elapsed number of seconds between 2 Date/Time fields. The formula below:
EndDateTime - StartDateTime
Only returns the number of elapsed days. What is the formula that would return the number of elapsed seconds?
Thanks you.
Multiply the differences of your two date/time fields by 84600. The calculation is a fractional number, if memory serves me correctly, so multiplying by the number of seconds in a day will yield the total number of seconds between events.
All Answers
Multiply the differences of your two date/time fields by 84600. The calculation is a fractional number, if memory serves me correctly, so multiplying by the number of seconds in a day will yield the total number of seconds between events.
Thank you very much!
Worked perfectly.
I got this to work but should correct the formula to: (DateTime2 - DateTime1) * 86400
...not 84600 as stated in the Best Answer.
(NOW() - DateTimeField) * 24