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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

NetworkDays with Saturday

Hi All,

How can i calculate networkdays between Monday to Saturday? is there any parameters?

Thanks.

Note : NetworkDays function calculates Monday to Friday.

1 Solution

Accepted Solutions
sunny_talwar

You will need to use a work around... NetWorkDays is only for Monday to Friday

View solution in original post

2 Replies
sunny_talwar

You will need to use a work around... NetWorkDays is only for Monday to Friday

Anonymous
Not applicable
Author

Yes, i use awork around as;

If(Match(WeekDay(DATE),'Pzt','Sal','Çar','Per','Cum','Cmt'),'1','0') as [FlagNetWorkDays], //Short EN Days 'Mon','Tue','Wed','Thu','Fri','Sat'

If(Match(WeekDay(DATE),'Pzt','Sal','Çar','Per','Cum','Cmt'),'0','1') as [FlagSunday] //Short EN Days 'Mon','Tue','Wed','Thu','Fri','Sat'

Thank you