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
John L Schneider IIJohn L Schneider II 

Formula field that adds 4 business hours to created datetime

I have found formulas that calculate the age or time between two DateTimes in business hours.  What I am trying to calculate is the DateTime value that answers created + 4 business hours.  I understand this won't be the true business hours set in setup, but I am comfortable saying its a weekday and hours are 8 to 5.
Ryan GreeneRyan Greene
To add hours to a Date/Time field use the hours you want to add divided by 24 hours in a day. So to add 4 hours use the formula:
Field_Name__c + (4/24)