Appending one row at a time

G

Guest

Is there any way in an append query to specify that you just want to append
one row at a time?
 
D

Duane Hookom

You can't interrupt a SQL statement with a prompt to confirm individual
record appends or updates. A SQL statement/query is a batch process.
 
N

NathanJ

This may be accomplished by using a for loop and a counter inside VBA.
Although, you would have to run the query from a Form. This would
allow you to also create a prompt or execute code between each record
that you are appending.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top