Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
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