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

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

net working days

hi all

i have to Calculate networking days i know that i will be calculated by networkdays ()

but i don't how to consider two days(SAT,SUN)   as weekend

by using weekend function we get only one day as weekend

So how to get two days (SAT,SUN)  as weekend

thanks in advance

Labels (1)
2 Replies
sujeetsingh
Master III
Master III

Have a look of this thread

http://community.qlik.com/thread/69515

MK_QSL
MVP
MVP

You can create something like below in script or in chart expression...

IF(WeekDay([Invoice Date])='Sat' or WeekDay([Invoice Date]) = 'Sun','WeekEnd', 'WeekDays')