Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
arusanah
Creator II
Creator II

help with calculated dimension expression

=if(not match(MCO,'New *'),MCO)

trying to eliminate  values in dimension that starts with "New". tried lot of expresions but not working .. pls help

10 Replies
effinty2112
Master
Master

Hi Archana,

                         In the definition of your calculated dimension you'll need to use an aggr function like this:

=aggr(if(not wildmatch(MCO,'New *'),MCO),MCO)

Cheers

Andrew