Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Community,
I am trying to conditionally format the total row in my table.
I have a table in QLIK SENSE, and I want to color the TOTAL row in it. I have tried with function.
Isnull(row()) and dimensionality().
and also use other expression for achieving Total color.
my expression
= If(Even(RowNo(TOTAL)) , RGB(203, 209, 225), RGB(231,234,241))
but none of these seems to work.
my requirement is that total should be in red when values are in -ve and should be in green when values are in +ve.
For e.g The value of Total or -90.4% should be in Red.
Pls find attached snapshot for your reference.
Can someone help me in this?
@aamer007 how many dimensions are there in your pivot table?
@Kushal_Chawda I m using table chart only with one dimension and five measures.
@aamer007 Please use the below expression in Text Color Expression in Bud Var% measure.
if(Dimensionality()=0, if( (entire formual for Bud Var%) >0, Green(), Red()))
Hi @ramchalla ,
This also not working.
@aamer007 if possible, can you please provide some sample data.
@ramchalla Yes , I have attached a sample Data sheet.
Color expression should understand measure expressions. So try to attach QVW or QVF? Otherwise, Again need to work, If our guess not correct.
@aamer007 you can try below expression in background color or text color of Measure BUD Var%
=if(Dimensionality()=0, if( (Your BUD Var% Expression) <0, red(),green()))
hi @Kushal_Chawda ,
Its not working ,