Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Restricting dimensions

Hi,

I have a dimension with values 10A, 10B, 10C, 10D,10E. Ot of these I want to display only 10E and 10C. I believe I can do this in the calculated Dimension. Can anyone please help me with the syntax??

1 Solution

Accepted Solutions
vishsaggi
Champion III
Champion III

Try this in your dimension

= Pick(Match(Dim, '10E', '10C'), Dim, Dim)

View solution in original post

2 Replies
vishsaggi
Champion III
Champion III

Try this in your dimension

= Pick(Match(Dim, '10E', '10C'), Dim, Dim)

stabben23
Partner - Master
Partner - Master

Or you can use set analysis in your expression

sum({<Dim={'10E','10C'}>}Value)