Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
evansabres
Specialist
Specialist

Calculated Dimension

I have a field called 'capLEVEL'

I want to use this in a chart as a dimension, however when I use this field, i want to exclude the following, which are records in this field:

100 Preferred Rinkside

100 Level II Rinkside

100 Level III Rinkside

Hockey Suite.

How would I structure the 'expression' for my dimension

1 Solution

Accepted Solutions
sunny_talwar

May be like this

If(not Match(capLEVEL, '100 Preferred Rinkside', '100 Level II Rinkside', '100 Level III Rinkside', 'Hockey Suite.'), capLEVEL)

View solution in original post

2 Replies
sunny_talwar

May be like this

If(not Match(capLEVEL, '100 Preferred Rinkside', '100 Level II Rinkside', '100 Level III Rinkside', 'Hockey Suite.'), capLEVEL)

evansabres
Specialist
Specialist
Author

Helpful as always, thank you