Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
hopkinsc
Partner - Specialist III
Partner - Specialist III

Wildmatch in script

Hi all,

Is there a way i can use a CHR() in a wildmatch where clause?

I am trying to find data with a ^ in it , but when i try

Where Wildmatch([Field Name],'*^');

i get nothing back.

I am guessing it doesnt like the ^ so i was wondering if i could use the CHR() istaed '(CHR(93)'

does anyone know how i would write that?

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Have you tried index instead?

WHERE Index(FIELD, '^');

or

WHERE Right(FIELD,1) = '^';

View solution in original post

4 Replies
swuehl
MVP
MVP

Have you tried index instead?

WHERE Index(FIELD, '^');

or

WHERE Right(FIELD,1) = '^';

hopkinsc
Partner - Specialist III
Partner - Specialist III
Author

Thats great, i didnt try index() Thanks very much!

vishsaggi
Champion III
Champion III

May be try this?

WildMatch([Field Name], '*'&$(=Chr(94))&'*')

andrey_krylov
Specialist
Specialist

Were looking looking for solution))