Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
cancel
Showing results for 
Search instead for 
Did you mean: 
alekpprrr
Contributor
Contributor

Highlight fields in pivot table

Hi, all!

How can I highlight cells that are weekends? I need to distinguish those values

 

Thanks!

akseeels_0-1671195296263.png

 

1 Reply
rubenmarin

Hi, if the dimensions are related to month and day number, you can ad a field in script that uses those values to check the date, and if that date was on weekend.

To check if it was on weekend you can use weekday() function

If(WeekDay(DateValue)>=5,1,0) as isWeekend

With that field you only need to add a color expression to the table as: If(isWeekend, Yellow())