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

Announcements
Talend Cloud AWS EU Scheduled Outage: Starting Tues 26 May 21:00 CEST with expected completion Wed 27 May 01:00 CEST
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