Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
Try this with WildMatch instead of Match
If(Not WildMatch(County, 'New*'), County)
Try this with WildMatch instead of Match
If(Not WildMatch(County, 'New*'), County)
or
If(County NOT LIKE 'New*', County)