Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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');
Where Match(Day,'Mon','Tue','Wed','Thu','Fri') and Match(Site, 'A', 'B');
-Rob
Where Match(Day,'Mon','Tue','Wed','Thu','Fri') and Match(Site, 'A', 'B');
-Rob
Thank you! It's perfect.