PC Review


Reply
Thread Tools Rate Thread

How to batch create / generate and print invoices from Excel data?

 
 
=?Utf-8?B?aGVsZW5lcno=?=
Guest
Posts: n/a
 
      5th Aug 2005
I'm not sure if this is even possible, but if it is...

Is there a way to automatically create multiple packing slips or invoices
from excel data?

In my case, we can download a csv file with hundreds of customers' names,
addresses, and orders. I want a way to automatically create a packing slip
for each order (they can be on the same sheet, with page breaks) and print
the slip, instead of having to create a new packing slip manually for each
order. All the data is there.. I just need a way to create something out of
it.

We do this every morning, so something easy to use would be great.
 
Reply With Quote
 
 
 
 
STEVE BELL
Guest
Posts: n/a
 
      5th Aug 2005
You could create a Mail Merge in Microsoft Word and use the Excel workbook
as the data source.

You can also create a custom label size to match your packing slip size.

And once you get it set up, you should be able to save it and reuse it with
new data anytime you desire...
--
steveB

Remove "AYN" from email to respond
"helenerz" <(E-Mail Removed)> wrote in message
news:EA7EF78C-5AD2-4E7B-AFDC-(E-Mail Removed)...
> I'm not sure if this is even possible, but if it is...
>
> Is there a way to automatically create multiple packing slips or invoices
> from excel data?
>
> In my case, we can download a csv file with hundreds of customers' names,
> addresses, and orders. I want a way to automatically create a packing slip
> for each order (they can be on the same sheet, with page breaks) and print
> the slip, instead of having to create a new packing slip manually for each
> order. All the data is there.. I just need a way to create something out
> of
> it.
>
> We do this every morning, so something easy to use would be great.



 
Reply With Quote
 
Tim Williams
Guest
Posts: n/a
 
      5th Aug 2005
Format a worksheet to represent your required slip, with named ranges for
the information.

copy/paste the information into another sheet and have a macro run through
the list, copy the values into the corresponding cells on your form, then
print the form.

rinse and repeat.

eg.
******************************
dim lRow as long
dim shtSlip as worksheet

set shtSlip = thisworkbook.sheets("slip")


lRow=2

with thisworkbook.worksheets("packing info")

do while .cells(iRow,1).value<>""

shtSlip.range("customer").value=.cells(iRow,1).value
shtSlip.range("customer").value=.cells(iRow,2).value
shtSlip.range("customer").value=.cells(iRow,3).value
shtSlip.range("customer").value=.cells(iRow,4).value
'.....

shtSlip.range("A1:M200").printout

lrow=lrow+1
loop

end with


Tim.

--
Tim Williams
Palo Alto, CA


"helenerz" <(E-Mail Removed)> wrote in message
news:EA7EF78C-5AD2-4E7B-AFDC-(E-Mail Removed)...
> I'm not sure if this is even possible, but if it is...
>
> Is there a way to automatically create multiple packing slips or invoices
> from excel data?
>
> In my case, we can download a csv file with hundreds of customers' names,
> addresses, and orders. I want a way to automatically create a packing slip
> for each order (they can be on the same sheet, with page breaks) and print
> the slip, instead of having to create a new packing slip manually for each
> order. All the data is there.. I just need a way to create something out

of
> it.
>
> We do this every morning, so something easy to use would be great.



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Assigning print date / batch number to reports & invoices Dennis Microsoft Access Reports 6 22nd Feb 2010 03:54 PM
How to create a macro in excel so that it can generate a list ofunique records using all permutations and combinations of the data in eachrow ad column Rizwan Microsoft Excel Misc 1 6th Aug 2009 01:44 PM
how do I print a batch of invoices in Access 2003 =?Utf-8?B?Sm9oYW5u?= Microsoft Access Getting Started 2 10th Jan 2006 02:31 PM
How do I create invoices from an Excel spreadsheet? =?Utf-8?B?TGlzYVA=?= Microsoft Excel New Users 1 11th Oct 2005 03:39 AM
Create invoices from excel workbook =?Utf-8?B?S0pI?= Microsoft Excel Worksheet Functions 5 22nd Dec 2004 02:21 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 06:28 AM.