How can I show the number of rows pasted by a macro?

  • Thread starter Thread starter Tiff
  • Start date Start date
T

Tiff

I have created a macro that autopastes the rows but need to know how many
rows I am autopasting.

thank you

tiff
 
Tiff

"... that autopastes the rows ... "

What rows? What is the source of what you are pasting?

--

Regards

Jeff Boyce
Microsoft Access MVP
 
The rows are as a result of a make table query which has date parameters.
The table we are running it from are from a linked table.

thank you

tiff
 
The rows are as a result of a make table query which has date parameters.
The table we are running it from are from a linked table.

Use VBA instead of a Macro, and use the Execute method; this gives you a
RecordsAffected property. See the VBA help for RecordsAffected.
 
Back
Top