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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
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!!

Labels (1)
1 Solution

Accepted Solutions
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

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
Partner - Champion III
Partner - Champion III

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!!!