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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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())