delete all records but keep table

E

Eddy

I need to delete all records in a table but keeping the table. This is to
allow new records to be push into the table by my IT admin (he is not
familiar with Access). Can't do appending data as past weeks data may
change. Any suggestions?
 
A

Allen Browne

Create a macro with the RunSQL action.

The statement to delete all records from Table1 is:
DELETE FROM Table1;
 
E

Eddy

Thanks for helping newbie! Exactly what I need.

Allen Browne said:
Create a macro with the RunSQL action.

The statement to delete all records from Table1 is:
DELETE FROM Table1;
 

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