How do I save Ship to and Bill to information?

G

Guest

I have downloaded an Excel template, "sales invoice with tax and shipping and
handling calculations" and am wondering if there is a way to save the
customer information. Also, is there a way to automatically have the invoice
number change to the next number?...Thank You.
 
G

Guest

For the first part, if this will be for repeat customers, I'd think about
using a master customer sheet where you can add all of your customer
information, then use a combination of Data Validation for customer reference
and VLOOKUP to return all of their relevant information.

If it's one time orders and you just want to build a database of orders
you'll need to go the other direction and use VBA to transfer the invoice
data to a master sheet.

But you need VBA anyway to increment an invoice #, which you can do like so:

Range("A1").Value = Range("A1").Value +1

HTH,

Smitty
 

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

Top