Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a chart which totals the cost for "Practices". The chart includes a fieldname called "unallocated" within a dimension called "Practice" and I want to exclude the "unallocated". Any assistance would be appreciated. I have attached the chart.
Thanking you in advance
Claire
Use calculated dimension
=if(Practice='unallocated', null(), Practice)
or
=aggr(if(Practice='unallocated', null(), Practice), Practice)
Use calculated dimension
=if(Practice='unallocated', null(), Practice)
or
=aggr(if(Practice='unallocated', null(), Practice), Practice)