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
jpenuliar
Partner - Specialist III
Partner - Specialist III

try a calculated dimension: =if(field<>2,field)

PradeepReddy
Specialist II
Specialist II

Try something like this..

In List box, Add an expression instead of field..  If(MBR<>'2',MBR)

Not applicable
Author

Hi,

if(match(field,'2')=0,field)

regards

Harshita Gaur

jpenuliar
Partner - Specialist III
Partner - Specialist III

you can also use Valuelist('1','4','3')

Not applicable
Author


Hi,

try this

if(not match(member,2),field)

Not applicable
Author

thanks all that worked

PradeepReddy
Specialist II
Specialist II

Close the thread..

Not applicable
Author

how

jagan
Partner - Champion III
Partner - Champion III

Hi,

Try this calculated dimension

=If(DimensionName<>2,DimensionName)


Or

The best approach handle this in script, calc dimensions has performance issues.


LOAD

*,

If(DimensionName<>2,DimensionName) AS NewDimensionName

FROM DataSource;


Now use NewDimensionName as dimension.


Regards,

Jagan.