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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
asinghal0412
Partner - Creator
Partner - Creator

Using WildCharacters to reduce selection

Dear Qlik Community,

I have a code below:

=if(Status_VAVE ='VSG5 - Monitoring' or Status_VAVE = 'VSG5- Release for Production', Status_VAVE)

The code works but it is too long. I want to use wild characters to reduce the code, something like below:

=if(Status_VAVE ='VSG5*', Status_VAVE)

The above code does not work. Can someone help me with this?

Thanks,

AS

Labels (1)
1 Solution

Accepted Solutions
MayilVahanan

HI @asinghal0412 

Try like below

=if(wildmatch(Status_VAVE ,'VSG5*'), Status_VAVE)

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.

View solution in original post

1 Reply
MayilVahanan

HI @asinghal0412 

Try like below

=if(wildmatch(Status_VAVE ,'VSG5*'), Status_VAVE)

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.