Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

time format in formule

hi,

i had 2 feild that show time - in & out

i want to know how i need to write in expresion the formule (out - in ) .

the answer need to be at the same format ( time format ).

thanks'

yarin.

3 Replies
er_mohit
Master II
Master II

hiiiii

see the attached file

hope it helps

sreenivas
Creator III
Creator III

PFA t may help you.

Not applicable
Author

hi

try this

a:

LOAD name,

     time_in,

     time_out

FROM

(ooxml, embedded labels, table is Sheet1);

LOAD

name,

     Min(Time(time_in,'hh:mm:ss')) as TIMEIN,

     max(Time(time_out,'hh:mm:ss')) as TIMEOUT

     Resident a

     Group By name;