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: 
evansabres
Specialist
Specialist

Calculated Dimension

I am attempting to create a calculated dimension.

I want my field to display the 'PriceLevel' when it is not equal to the following:

'100 Preferred Rinkside'

'100 Level II Rinkside'

'100 Level III Rinkside'

'Hockey Suite'

I attempted

=if(PriceLevel <> '100 Preferred Rinkside' or PriceLevel <> '100 Level II Rinkside' or PriceLevel <> '100 Level III Rinkside' or PriceLevel <> 'Hockey Suite', PriceLevel)

However, this seems to only remove the '100 Preferred Rinkside'

Am I structuring this incorrectly?

Labels (1)
1 Solution

Accepted Solutions
its_anandrjs
Champion III
Champion III

Then write

=If( NOT Match( PriceLevel ,'100 Preferred Rinkside','100 Level II Rinkside','100 Level III Rinkside','Hockey Suite') PriceLevel)

View solution in original post

2 Replies
its_anandrjs
Champion III
Champion III

Then write

=If( NOT Match( PriceLevel ,'100 Preferred Rinkside','100 Level II Rinkside','100 Level III Rinkside','Hockey Suite') PriceLevel)

evansabres
Specialist
Specialist
Author

Thanks!