Hi,
Umm..you don't have to export the new column... For example,
SELECT test.city, test.num
FROM test
WHERE (((test.num3) Is Not Null))
GROUP BY test.city, test.num;
In this query, columns [city] and [num] are retrieved by the query (and
possibly exported to excel). Note that there is a where clause for the
[num3] column, which determines which records to select/export. Since [num3]
is only in the WHERE clause, it will factor into the results but not
retrieved/visible/exported.
Hope this helps,
geebee
T Miller said:
Hi,
But I am thinking I don't want the header to show in the excel file, that
column is blank and already has it's own header. So, I thought the
placeholder i.e. the "new column" had to have an expression or something so
that it would not overwrite the column in the spreadsheet?