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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
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??

Labels (1)
1 Solution

Accepted Solutions
swuehl
Champion III
Champion III

if you want to use a calculated dimension, maybe like

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

View solution in original post

2 Replies
swuehl
Champion III
Champion III

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())