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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Two field load block

Can you help me correct my syntax in the bottom two lines? I only want to load records with Clinton and Bush from the Alumni field as well as Yale and Harvard from the School field.

LOAD

    Alumni,

    State,

    School,           

    Title

FROM [lib://Alumni.xlsx]

(ooxml, embedded labels, table is Sheet1)

Where WildMatch([Alumni],'*Clinton*', '*Bush*',),

Where WildMatch([School],'*Yale*', '*Harvard*');

1 Solution

Accepted Solutions
andrey_krylov
Specialist
Specialist

Try this

Where WildMatch([Alumni],'*Clinton*', '*Bush*')  and WildMatch([School],'*Yale*', '*Harvard*');

View solution in original post

1 Reply
andrey_krylov
Specialist
Specialist

Try this

Where WildMatch([Alumni],'*Clinton*', '*Bush*')  and WildMatch([School],'*Yale*', '*Harvard*');