Hi guys,
We have an access database, but I am exporting the data to excel via an ODBC connection.
When doing this I want to select queries from more than one section for an excel sheet can somebody please advice.
As an example:
I have 5 different sections and normally each section would go onto a different sheet in excel, but now my engineering manager has gone filter crazy and wants everything on the same sheet.
So this is what I am trying to do:
Code:
SELECT cust_id, cust_section
FROM unit
WHERE cust_section = 'section A';
But now I want to include section b, section c, etc... in the same query can somebody please help with the syntax ?