Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
evansabres
Specialist
Specialist

Pivot Table Formatting

Hello -

I have a pivot table that shows available tickets for different sections of an arena. My chart appears as this:

I want to have the cells formatted, similar to a heat map. Is this possible? I would like to have the cell appear purple if more than 100 tickets remaining and orange if less than 100.

Thank you.

1 Solution

Accepted Solutions
sunny_talwar

If you should be able to use background color expression to do this:

If(YourExpression > 100, RGBforPurple, RGBforOrange)

View solution in original post

3 Replies
sunny_talwar

If you should be able to use background color expression to do this:

If(YourExpression > 100, RGBforPurple, RGBforOrange)

evansabres
Specialist
Specialist
Author

thank you

rubenmarin

Hi, I also use:

If(ExpressionLabel> 100, RGBforPurple, RGBforOrange)


This way if the expression changes the backgroundcolor will apply the modified expression without requiring any changes (althought it needs manually maintenance if expression label changes)


Not sure if this uses the already calculated value (wich should give better performance) or recalculates the expression.