Time Formula

thelasttif

New member
Joined
Feb 23, 2016
Messages
1
Reaction score
0
Points
0
Hi Guys,

CREATED_TSCOMPLTD_TSCALL_STARTED
08/02/2016 11:55:0408/02/2016 15:20:4709-FEB-16 14:33:15
09/02/2016 15:28:5710/02/2016 09:51:3610-FEB-16 11:25:24

I'm trying to create a formula that will tell me if the CALL_STARTED came in within 24hours of CREATED_TS time. This is what I was trying but it wasn't returning the results I wanted

=IF(AND(CALL_STARTED > CREATED_TS, CALL_CREATED<(CREATED_TS+TIME(24,0,0))),"Within 24 Hours", "After 24 hours")

Any help would be appreciated.

Thanks
 
Try:

=IF((CALL_STARTED-CREATED_TS)*24<=24,"Within 24 Hours","After 24 Hours")
 
Back
Top