function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
MegachuckmcMegachuckmc 

How to display hours

This should be simple but...
 
I want to display the time in hours from when a Case is Opened and when it is closed.
 
Elapsed Time (Number) = ClosedDate -  CreatedDate
 
Any suggestions?
 
Thanks
 
CurtAllen.ax323CurtAllen.ax323
Code:
(ClosedDate-CreatedDate)*24

 
You may consider reviewing the Help and Training on formulas as they are very well written.  There is so much you can do with formulas beyond this.  :smileywink:
MegachuckmcMegachuckmc

Thanks Curt!

I knew it was something pretty straightforward but for the life of me it didn't "jump off the page whenI searched through the Help stuff.   Sometimes what you get in Help is awesome and sometimes it's just "Hunh?"

Take Care!