Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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?
@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())