Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
Daniel1908
Creator
Creator

Specific Word in first 50 characters

Hello Together, 

I am using the below expression, it works fine. 
Now I want to show the Material which does not contain the Text = *Spare Part* in the first 50 characters as well. 
If *Spare Part appears in the first 50 characters it should not appear in the list. 

=Count( {Product={'AW'},[Status]*={'Good'},Text-={"*Spare Part*"}>+<[Status]*={'Very Good'},Text-={"*Spare Part*"}>}Material)

Thanks for your help.

2 Replies
tresesco
MVP
MVP

Try like:

Text={"=WildMatch(Left(Text,50), '*Spare Part*') "}

Now and/or combination is up to you.

Daniel1908
Creator
Creator
Author

Thanks for your help.