hi,
Is it possibel to get a report of the records that are updated using a update query.
I mean without using recordset. suppose
now after theis query runs is it possible to get the name of the employees for whom this update query was performed.
i would like to get the updated records in a excel file.
Thanks
Is it possibel to get a report of the records that are updated using a update query.
I mean without using recordset. suppose
Code:
sqltext = update table employees set bonus = 0 where salary > 50000 DoCmd.RunSQL sqltext
i would like to get the updated records in a excel file.
Thanks
Comment