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

Simple Time Difference Formula Help
Hi,
I have two fields (of date/time data type) called InTime , OutTime. I have one more formula field (formula type) called Total to calculate the number of hours between InTime and OutTime.
Can some one hlep me with the formula please?
Thanks.
Just create a formula field return type as Number
(DateTimeField2__c - DateTimeField1__c)*24
All Answers
Just create a formula field return type as Number
(DateTimeField2__c - DateTimeField1__c)*24
Thank you.