Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
rajaqliks
Contributor III
Contributor III

conditional color formatting in pivot table

Hi Folks,

I need to greayed out particular column in pivot table please help i am adding the sample qvw 

condition: if(WEEKEND='11/23/2018',rgb(225,225,225)

Result:

grey.PNG

1 Solution

Accepted Solutions
rubenmarin

Hi, you can try with:
If(Floor(WEEKEND)=Date('11/23/2018'), RGB(128,128,128))
// Used floor() to remove decimals, weekend is at 23:59:59

But cells without data will remain white until there is some data that relates rows and columns.

View solution in original post

2 Replies
rubenmarin

Hi, you can try with:
If(Floor(WEEKEND)=Date('11/23/2018'), RGB(128,128,128))
// Used floor() to remove decimals, weekend is at 23:59:59

But cells without data will remain white until there is some data that relates rows and columns.
rajaqliks
Contributor III
Contributor III
Author

Thanks it working like a charm