Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have the Pivot chart with data which is in attached. I would need to colour the diagonal values which is in Pivot table. Please can anyone suggest me is it possible?
Thanks.
Try using this in the background color property of the expression:
if (RowNo() = ColumnNo(), LightRed())
Please see attached.
Try using this in the background color property of the expression:
if (RowNo() = ColumnNo(), LightRed())
Thanks. How can I change for all diagonal values. Please suggest me.
EDIT: I tried using the below it is changing the colour. But I need exact change in the diagonals. Please help me. please see attached.
if (RowNo() = ColumnNo(), LightRed(),
If(RowNo() <ColumnNo(), Green()))
Found the answer.
If (RowNo() = ColumnNo(), White(),
If(RowNo() < ColumnNo(), LightRed(100),
If(RowNo() > ColumnNo(), LightGreen(120))))