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: 
Not applicable

Expression pointage

Comment corriger cette expression ci dessous pour quel me retourne dEvent_Date = '1' si le pointage avant 08:30 si non elle me retourne '0'

if(num(Hour(dEvent_Date))<='08' and num(Minute(dEvent_Date))<='30','1','0') as T830,

1 Solution

Accepted Solutions
Not applicable
Author

if(num(Hour(dEvent_Date))<='08' and num(Minute(dEvent_Date))<='30' or ((num(Hour(dEvent_Date))<'08' and num(Minute(dEvent_Date))>'30')) ,'1','0') as T830,

View solution in original post

3 Replies
antoniotiman
Master III
Master III

Quel est le format de dEvent_Date ?

Not applicable
Author

11/06/2014 09:03
Not applicable
Author

if(num(Hour(dEvent_Date))<='08' and num(Minute(dEvent_Date))<='30' or ((num(Hour(dEvent_Date))<'08' and num(Minute(dEvent_Date))>'30')) ,'1','0') as T830,