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

Calculated Dimensions

How do I only use certain records of my dimension field?  Example I have a field with (Hot, Cold, Warm) as the possible values.  I want to only have Hot and Cold as the ones that show up in my graph fot that dimension.

2 Replies
rbecher
MVP
MVP

Hi Brandon,

just try function:

     ValueList('Hot', 'Cold')

as a calculated dimension.

- Ralf

Astrato.io Head of R&D
swuehl
MVP
MVP

Try

=if(match(YOURFIELD,'Hot','Cold'),YOURFIELD)

edit:

Oh, I just thought I have already answered the question but forgot to commit 😉