Hey there, This is sample formula field to get difference in hours from date time field to current time.
I have considered Event standard field ActivityDateTime to calculate hours in this example
See formula below screenshot.
formula:
I have considered Event standard field ActivityDateTime to calculate hours in this example
See formula below screenshot.
formula:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(FLOOR(( NOW() - ActivityDateTime)*24)) | |
+ | |
FLOOR(((( | |
((NOW() - ActivityDateTime )*24)- | |
FLOOR((NOW() - ActivityDateTime)*24)) | |
*60)/100)) |
By — anil
08:58