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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Find the value by using wild match

Hi All,

Guys i want to show the value by using wild match,

The data is :

Table

A B C *

C D E *

G H I *

A N D D

D F R R

Value must be shoe where star value is not present by using wild match.

o/p

ANDD

DFRR

Thanks

Labels (1)
9 Replies
Anil_Babu_Samineni
MVP
MVP

May be this?

If(Not SubStringCount(Table,'*'), Table) as Table

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
sunny_talwar
MVP
MVP

Looking to do something in the script?

Anonymous
Not applicable
Author

Using wild match .

sunny_talwar
MVP
MVP

Have you tried loveisfail‌'s approach?

Anonymous
Not applicable
Author

Yes, I got the answer it but condition is using wildmatch.

sunny_talwar
MVP
MVP

May be this

If(Not WildMatch(Replace(Table, '*', '@'), '*@*'), Table) as Table

Anil_Babu_Samineni
MVP
MVP

haha, Sunny Can we use combination of FindOneOf() with WildMatch(). I know your intention but this is awesome !!

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Kushal_Chawda
MVP
MVP

But why you only need wildmatch?

Anonymous
Not applicable
Author