On Mon, 3 Nov 2003 09:16:31 -0800, "Henry"
<(E-Mail Removed)> wrote:
>Thanks for the response.
>
>So, an update query should do the trick? In the query do
>I add all the fields of the table? For the fields that do
>not necessarily need to be changed do I enter anything in
>the criteria or leave it blank? I mainly need to get all
>sales/dollars into one of the customer numbers. After
>that I plan updating any address changes etc and then
>deleting the customer number and info in the table. Am I
>on the right track or am I making this more difficult than
>it is?
You're making it MUCH more difficult than it needs to be.
Stop, step back, and do some reading about normalized table design.
You should have one table for each "Entity" - a real-life person,
thing, or event. You'll have a Table of Customers, with name, address
information, etc.; you'll have a table of Sales, with a CustomerID (a
link to the customers table), SaleDate, amount; doubtless other tables
as well. YOu don't put "sales/dollars into one of the customer
numbers" - if you want to display the total sales for a customer, you
would calculate the total on the fly in a Totals Query and base a form
or report on that query. There's no need to store the total, and
there's no need to delete the information when you're done with it!
John W. Vinson[MVP]
Come for live chats every Tuesday and Thursday
http://go.compuserve.com/msdevapps?loc=us&access=public