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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to use WildMatch function here?

Hi,

Here is the attached example Spreadsheet I need to get only from the field Channel = 40 and Division =AC and Partner =50.

Can anyone help me on this?

I tried the following in scrip but it is not working 😞

where wildmatch([Channel],[Division ],[Partner ], '*40*','*AC*','*50*');

1 Solution

Accepted Solutions
Ralf-Narfeldt
Employee
Employee

The load condition would be where Channel = 40 and Division = 'AC' and Partner = '50'

View solution in original post

3 Replies
maxgro
MVP
MVP

why wildmatch?

you can use a simple where Channel='40' and Division......

but if you want wildmatch, try

LOAD Component,

     Channel,

     Division,

     Partner

FROM

amouunt.xlsx

(ooxml, embedded labels, table is Sheet1)

Where WildMatch(Channel&'-'&Division&'-'&Partner, '40-AC-50')

Ralf-Narfeldt
Employee
Employee

The load condition would be where Channel = 40 and Division = 'AC' and Partner = '50'

Not applicable
Author

Thanks a ton Ralf 🙂