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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Create Calculated Dimension

Hi

I have a current "dimension" called NIVEL with several elements as shown:

YES YO.bmp

Now I want to create a bar chart with a CALCULATED DIMENSION but including ONLY the GREEN shaded elements.

How can I accomplish this??

1 Solution

Accepted Solutions
swuehl
MVP
MVP

if you want to use a calculated dimension, maybe like

=if( wildmatch( Nivel, 'Total*'), Nivel)

View solution in original post

2 Replies
swuehl
MVP
MVP

if you want to use a calculated dimension, maybe like

=if( wildmatch( Nivel, 'Total*'), Nivel)

oscar_ortiz
Partner - Specialist
Partner - Specialist

Or you can try

=If( NivelLike 'Total*', Nivel, Null())