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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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)