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

Announcements
Search may be unavailable 11:30 PM on Aug 24 to 1:30 AM on Aug 25. Thank you for your patience.
cancel
Showing results for 
Search instead for 
Did you mean: 
GeorgeEard
Contributor III
Contributor III

Removing Weekends from data/Line graph

I have currently got the dimension "=if([Creation Date] > '01.06.2024',[Creation Date],null())" in my line graph however it includes weekends.

How would I be able to exclude weekends from the line graph?

Labels (1)
1 Reply
Kushal_Chawda
MVP
MVP

@GeorgeEard  It's better to create Flag in script but you can try below

if([Creation Date] > '01.06.2024' and not match(weekday([Creation Date]),'Sat','Sun'),[Creation Date],null())