Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content
Announcements
March 26 at 10am ET: See how Qlik drives growth and value in ISV segment - REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
regowins
Creator II
Creator II

Add week days only to a date

Hi,

How do I add only week days to a date. I am trying to set a due date but I only want business days. For example, if I do date(current_date + 10) as due_date gives me calendar days. I want the due date to show 10 week days from the current date.

Thanks!!

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Try LastWorkDate() function:

lastworkdate(today()+1, 10)

will add 10 working days to today (not counting today itself).

View solution in original post

2 Replies
swuehl
MVP
MVP

Try LastWorkDate() function:

lastworkdate(today()+1, 10)

will add 10 working days to today (not counting today itself).

regowins
Creator II
Creator II
Author

Great, Thanks!