Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

removing member from dimension

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

14 Replies
Not applicable
Author

Hi

In the above example, if i dont want to show 2 and 3 how would i extend this?

salto
Specialist II
Specialist II

Hi,

what about adding an "or" condition to the calculated dimension...

=if(field<>2 or field<>3,field)

Not applicable
Author

the or statement left them both in so used the and and that worked.

thanks

its_anandrjs
Champion III
Champion III

Hi,

You can write also


=if(not Match(field,2,3),field)


Regards

Anand

salto
Specialist II
Specialist II

Oops, my fault I wrote too fast!