Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can I append from a form instead of a table?

Status
Not open for further replies.

KielWayne

Technical User
Feb 16, 2002
1
US
I have a form based on a query on Table A. I want to change the records on the form and append the changed records to Table B, leaving Table A in it's original state. I am fairly new to Access, and everything I have found so far seems to indicate that action queries are tied to tables only.

Thanks for any quidance in this.

Wayne
 
Use a SQL INSERT statement.

INSERT INTO table [(column [, column...])]
VALUES (value [, value...])]

Steve King Growth follows a healthy professional curiosity
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top