Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
cancel
Showing results for 
Search instead for 
Did you mean: 
arusanah
Creator II
Creator II

calculated dimension help

Hello ,

trying to remove Data in Dimension that starts with "New".

if( not match(County,'New*'),county)

if(county='New*','NULL',county)

tried above expressions but not working , pls help

1 Solution

Accepted Solutions
sunny_talwar

Try this with WildMatch instead of Match

If(Not WildMatch(County, 'New*'), County)

View solution in original post

2 Replies
sunny_talwar

Try this with WildMatch instead of Match

If(Not WildMatch(County, 'New*'), County)

sunny_talwar

or

If(County NOT LIKE 'New*', County)