Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
noman212
Creator III
Creator III

Set analysis calculating late timings of employee

Hello

i want to calculate the time difference i have excel sheet in which DATE field display time as 1/2/1900  9:06:00 AM, i just want to calculate late timing if time of emp exceed 9:15 then it count the time difference that how much emp late today.

pls help

thanks

1 Reply
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

EmployeeArrivals:

Load *, if(IsLate, interval(Time - 925/2400,'hh:mm') as TimeLate ;

Load *, if(Time>925/2400,1,0) as IsLate ;

Load EmployeeID, DATE From myexcelfile.xlsx (oomxl, ...etc);

Expressions for use in charts:

sum(TimeLate)

count({<IsLate={1}>}EmployeeID)


talk is cheap, supply exceeds demand