Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Filtering dbase (sort)

I have 3 fields and i want to filter out with a key word how do i do it?

See example:

S/NComp

Amount

1Afrihob Shop200
2Mavrikshop400
3Deco Shores300
4SirV Sp230
5Genesis100
6Marikosshop201
7Merit SHop40

I want to filter my database using "Where" to pick only the Comp having Shop, SHop or Sp

1 Solution

Accepted Solutions
marcus_sommer

In qlikview you could use: where wildmatch(Comp, '*Shop*', '*SHop*', '*Sp*') and per sql something like: where Comp like '*Shop*' or Comp like '*SHop*' or Comp like '*Sp*'.

- Marcus

View solution in original post

2 Replies
marcus_sommer

In qlikview you could use: where wildmatch(Comp, '*Shop*', '*SHop*', '*Sp*') and per sql something like: where Comp like '*Shop*' or Comp like '*SHop*' or Comp like '*Sp*'.

- Marcus

Not applicable
Author