Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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
Luminary Alumni
Luminary Alumni

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.