Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
How can i not show a member in dimension, so in the example below i do not want to show 2.
1
2
3
4
Hi
In the above example, if i dont want to show 2 and 3 how would i extend this?
Hi,
what about adding an "or" condition to the calculated dimension...
=if(field<>2 or field<>3,field)
the or statement left them both in so used the and and that worked.
thanks
Hi,
You can write also
=if(not Match(field,2,3),field)
Regards
Anand
Oops, my fault I wrote too fast!