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

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
QlikSenseDevTT
Contributor
Contributor

Multiple Conditional Loading in Data Load Editor

Hi,

I want to load only some sections of 2 fields.

Day load only Mon to Fri. I need to exclude Sat and Sun

Sites - A and B. I need to exclude others.

I did a where match as follows which works fine for the Day but how can I do the same for Sites?

Where Match(Day,'Mon','Tue','Wed','Thu','Fri');

 

Labels (1)
1 Solution

Accepted Solutions
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

Where Match(Day,'Mon','Tue','Wed','Thu','Fri') and Match(Site, 'A', 'B');

-Rob

View solution in original post

2 Replies
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

Where Match(Day,'Mon','Tue','Wed','Thu','Fri') and Match(Site, 'A', 'B');

-Rob

QlikSenseDevTT
Contributor
Contributor
Author

Thank you! It's perfect.