Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello, I use Background Coloration with conditions in Pivot Table to Highlight some Values.
Let´s say I want a green Background Color if the Value is greater than 20.
Now if I use the autogenerated Totals in Pivottable i get the Coloration in Totals Rows and columns for the same condition, but for example i want the Totals only to have a green Color if the Total Value is greater than 50.
Is that possible?
Best Regards
Heiko
Please provide more info about how it should be, May be supply sample dashboard and explain the scenario.
Shure, here is an example.
As you can see the Totals row and column also have a background color and use the same condition as all other cells in this pivot table.
Now i want to use another condition for coloration of these totals.
Best regards
Hi,
You can use Dimensionality() function to give specific colors for totals.
Below code makes your totals green if totals > 50 and makes your other cells green if value of those cells > 20
if(Dimensionality()=1,
if(Value>50, green(), red()),
if(Value>20, green(), red())
)
Yes, That's possible. But you need to do some custom setup with Inline load. Please try to attach sample file which demonstrates the issue.