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

How to filter certain data in columns in the Load Editor

Hello,

I am trying to limit some of the data that I am loading. I have a column that has Test such as ELA Test 01, Math Test 01, etc... I want to make sure I only bring the ELA tests so not sure what it should be.

I am used to using

WHEN MATCH ([column], 'a','b','c')

but is there such a thing as

WHEN contains ([column], ELA)

Also, will there be a way to do a boolean when it contain ELA or English

I have tried looking for a place with the the scrip, but I cant find it anywhere.

Thanks,

Sara

1 Solution

Accepted Solutions
Vegar
MVP
MVP

LOAD

  Wildmatch([column], '*ELA*','*English*')>0 as _ElaEnglishBoolean

FROM/RESIDENT

  YourTable

WHERE

  Wildmatch([column], '*ELA*')

View solution in original post

1 Reply
Vegar
MVP
MVP

LOAD

  Wildmatch([column], '*ELA*','*English*')>0 as _ElaEnglishBoolean

FROM/RESIDENT

  YourTable

WHERE

  Wildmatch([column], '*ELA*')