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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
master_student
Creator III
Creator III

DIFF

Hello Guys,

I need your help, I need to get the difference between two date that have that format :

Creation date 22/10/2017 12:33:35

Last modification date 23/10/2017 08:01:41


I need to get the result in hours : minitues without counting sundays


Thanks

Labels (1)
1 Reply
its_anandrjs
Champion III
Champion III

Try Interval match function

if( NOT Match(Weekday([Last modification date]),'Sun') and NOT Match(Weekday([Creation date]),'Sun') ,

Interval([Last modification date] - [Creation date] , 'mm')) as Difference