Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I need help in displaying metrics in some dimension levels.
For Ex:- I have a Metric called TEST and i have 4 dimensions A,B,C,D
I would like to display the Metric only at B & D level.
Is it possible?
Yes, use function Dimensionality() to determine what level of dimension does the cell belong to:
if (Dimensionality() = 2 or Dimensionality() = 4, ....)
Thanks a mil!!! It works for me..