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

Announcements
Qlik Connect 2026 Agenda Now Available: Explore Sessions
cancel
Showing results for 
Search instead for 
Did you mean: 
TT
Partner - Contributor II
Partner - Contributor II

Color Coding with Crosstable in Pixel Perfect - Qlik Cloud Reporting Service

Hello,

I’m working with the CrossTable element to create a pivot-style table in Qlik Cloud Reporting Service (PixelPerfect). Everything works fine, but the conditional background color using the expression
Iif(MyMeasure > XX, 'Red()', 'Blue()') doesn’t seem to work.

Do you have any idea or solution for handling conditional formatting when using the CrossTable object?

Thank you.

Labels (1)
1 Reply
carlos_molino
Contributor III
Contributor III

Hi,
Try removing the single quotes from the Red() and Blue() functions:

    if(MyMeasure > XX, Red(), Blue())

Regards