Append Query

amfroehlich

Board Regular
Joined
Jul 14, 2004
Messages
192
I have linked a excel worksheet to Access and I am trying to run an append query on that table, so I can update my tables. The columns in the Query are Item, Program Cost, and Approved. To eliminate some of the rows I had to put these criteria for the item column:

<>"Total" And <>"Earned" And <>"Billed"

Now I am trying to append this query to a programs table, i am having problems because in that table the Items are saved as ItemNumber.

So how can i get this query to insert the Item number instead of the items title into the programs table, without losing my criteria?
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
I think you should change the structure of your query to :

Select Item, [Program Cost], Approved
from yourtable
where item not in ("Total","Earned","Billed")

I'm not sure if understand the rest of your question
 
Upvote 0

Forum statistics

Threads
1,221,792
Messages
6,161,995
Members
451,735
Latest member
Deasejm

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top