G
Guest
Hi,
I am working with Access 2003 and have a button with an "on click" event
which copies the contents of a query to a new excel spreadsheet:
objDB.Execute _
"SELECT * INTO [Excel 8.0;DATABASE=" & strExcelFile & _
"].[" & strWorksheet & "] FROM " & "[" & strQuery & "]"
objDB.Close
Set objDB = Nothing
This works great, but is ther away to then make changes to the contents of
the spreadsheet (from the same on-click event in Access)?
EG
I want to add a date to one of the cells.
I also have abbreviations in the query, which I would like to change once in
the spreadsheet.
I have no idea where to begin or what to search for in the help files, so
any info would really be appreciated!
Thanks!!
I am working with Access 2003 and have a button with an "on click" event
which copies the contents of a query to a new excel spreadsheet:
objDB.Execute _
"SELECT * INTO [Excel 8.0;DATABASE=" & strExcelFile & _
"].[" & strWorksheet & "] FROM " & "[" & strQuery & "]"
objDB.Close
Set objDB = Nothing
This works great, but is ther away to then make changes to the contents of
the spreadsheet (from the same on-click event in Access)?
EG
I want to add a date to one of the cells.
I also have abbreviations in the query, which I would like to change once in
the spreadsheet.
I have no idea where to begin or what to search for in the help files, so
any info would really be appreciated!
Thanks!!