Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How can I create grand total % as red column?
(Sum(GrandTotal) / Sum(Total GrandTotal)) *100
or
Num(((Sum(GrandTotal) / Sum(Total GrandTotal)) *100), '##0')
But Grand total I make from > Presentation> Show Partial Sum
Or write above expression then go to >> Number >> and tick show in Percentage (%)
In your application showing two Grand Total What is that?
Please share some sample app.
FYI
Hi,
Modify your expression like
if(secondaryDimensionality()=0,count(id)/count(Total id)*100,count(id))
or
if(secondaryDimensionality()=0,num(count(id)/count(Total id),'0.0%'),count(id))
To highlight with red color,
Expand that expression- > Background Color write below expression.
if(secondaryDimensionality()=0,Red())
Regards,
Prashant
PFA..