Skip to main content
Announcements
Join us on Feb.12 to Discover what’s possible with embedded analytics: REGISTER TODAY
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*');