Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
Do we have any way to Show/hide the Total amount on the dimension of the pivot table.
Example we have 2 dimensions : Profit center and company.
if the profit center P1 have more than one companies ( A,B) => show the total amount.
and if the profit center P2 has only one company A => hide the total amount.
Thanks in advance.
Hoai
Try this in your measure field:
if(count({$}distinct Company)>1,sum({$} Amount),'')
Try this in your measure field:
if(count({$}distinct Company)>1,sum({$} Amount),'')
Thanks but that is not I need.