Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
Hi,
Try removing the single quotes from the Red() and Blue() functions:
if(MyMeasure > XX, Red(), Blue())
Regards