Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a pivot table like the above one. I want to show ^ and v arrows with red and green color based on the previous months value.
how can I achieve that ??
you can simply try the below:
Custom format on the measure
▲ #,##0;▼ #,##0
Then add in Text Color Expression:
if(Value=1,Green(),Red())
this is fairly simple and neater option in a pivot table
You can also explore vizlib pivot chart extension, it has inbuilt feature to add the symbols.
Tried but didn't work.
choose Custom format on the measure and enter the below text. But for all the values it is just ▲ not showing the down trend
▲ #,##0;▼ #,##0
What is the value parameter in if condition . I assume the agg of revenue
Can you try writing a if condition in the custom format section ? I dont have QS with me so cant check.
May be something like this:
if(sum(Sale)>0,▲ #,##0,▼ #,##0)
Sorry buddy not working
Thanks, I am able to set the color based on the above row.... but the up and down symbols are not working with custom format... always showing the ▲
used the following text in format : ▲ #,##0;▼ #,##0
tried with if condition but if condition is not accepted in the format pattern
any other solution please