Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
magdagarcia
Contributor II
Contributor II

Operator "LIKE" in QlikView?

Hi everyone;

can you help me please?

In SQL server exist the Operator "LIKE"

The LIKE operator is used in a WHERE clause to  search for a specified pattern in  a column.

Can you tell me how is call this Operator "LIKE" en Qlik View?

Becasue in Qlikview is not called "LIKE" is the other way and have different name.

Regards!!

1 Solution

Accepted Solutions
Gysbert_Wassenaar

There are several functions that can be used. Wildmatch and Substringcount are the two most often used.

Load Product, Sales

from ...somewhere...

where wildmatch(Product, '*phone', 'battery*','radio');

See the help file for more details.


talk is cheap, supply exceeds demand

View solution in original post

2 Replies
Gysbert_Wassenaar

There are several functions that can be used. Wildmatch and Substringcount are the two most often used.

Load Product, Sales

from ...somewhere...

where wildmatch(Product, '*phone', 'battery*','radio');

See the help file for more details.


talk is cheap, supply exceeds demand
magdagarcia
Contributor II
Contributor II
Author

thanks very much !!! Regards!!!

done and work it!!!