Update Order Info based on Quote Info

RickDB

Registered User.
Local time
Today, 12:44
Joined
Jun 29, 2006
Messages
101
I need help on this, from what the best concept is, to what I need to look into using:

I store Quote data from phone calls into tblQuotes. There is a seperate table that holds much of the same information except that it is for actual orders called tblOrders.

As far as function goes, I have each working much the way I need it to except for one thing... If a sales person is on the phone with a customer with a quote already in the system, right now they re-enter the data into the Order table. Most times, the order is what was quoted, but maybe with a few small changes (so I will wnt to keep a historical record of the quote). How could I copy the contents of the quote recordset into the recordset for an order, where all the sales rep does from there is edit the quote to the actual order?

Would I use VBA or an update query that is executed via VAB? Honestly, I am unsure how to do this at all, I hope someone has seen this before and has a good suggestion...

Thank you.
 
RickDB said:
Would I use VBA or an update query that is executed via VBA?
Yes, either :)

Actually, more likely an Append query (I'm assuming you'll be creating a new order, not updating an existing one)
Append to Orders table, with criteria as matching the current record key
 
Good, I was afraid someone was going to lay some smackdown on me about normalization... I made seperate table for Quote / Orders because they seemed like 2 seperate entities to me at the time.

Thanks!
 

Users who are viewing this thread

Back
Top Bottom