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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
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

@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())