Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
guyvermeiren
Creator
Creator

Check if text contains certain words

Hello,

If have a calculated dimesion where i want to check on the content of the fields.

Example:

I have a number of "Trainings":

"Advanced training electronics"

"Advanced training mechanics"

"Basic training electronics"

"Basic training mechanics"

"Specialists training"

Now I want to create a calculated dimension where I get Null() if the trainingname contains "Advanced training"

Thanks for your help on the formula.

Kind regards,

Guy

1 Reply
CELAMBARASAN
Partner - Champion
Partner - Champion

Hi,

     Check with this

     If(not WildMatch(Trainings,'*Advanced training*'), Trainings)

Celambarasan