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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Filter Records in Script

Am trying to filter item numbers in the script so item numbers that start with A through Z and items starting with 6DDP and 6DDR display.

Have tried many functions including sample below without any success

SQL SELECT *

FROM "Inventory Master File" WHERE WILDMATCH(ITEM_NUMBER ='A*' or 'B*' or 'C*' or '6DDP*' or '6DDR*');

Thank you in advance for your help!

Labels (1)
2 Replies
Not applicable
Author

Hi,

one way would be with like statement:

...where ITEM_NUMBER like ‘A*’ or ITEM_NUMBER like ‘B*’ ...

regards

Not applicable
Author

Thank you for your suggestion - I will give it a try.