adding information in an append

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am making an append query and have 2 issues. First, I need it to show all
columns I select for the query, not just the fields being updated.

Second, I am building the query to update to a table that has 3 possible
values for a column, can I make the database show the list so I can chose
before it updates?
 
Append queries are not intended for displaying data. Your desire to "see"
all the columns is therefore an inappropriate desire for this type of query.
Use a Select query to display data.

As for the second question about displaying choices, the query won't do this
for you. Instead, use a form that is designed to show the data before
updating and let you select what you want to do, and then have the form's
programming run the query. This likely isn't a simple thing to set up,
though, if your ACCESS skills are not medium-level.
 

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

Back
Top