Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
May be this?
If(Not SubStringCount(Table,'*'), Table) as Table
Looking to do something in the script?
Using wild match .
Have you tried loveisfail's approach?
Yes, I got the answer it but condition is using wildmatch.
May be this
If(Not WildMatch(Replace(Table, '*', '@'), '*@*'), Table) as Table
haha, Sunny Can we use combination of FindOneOf() with WildMatch(). I know your intention but this is awesome !!
But why you only need wildmatch?