Invoices

  • Thread starter Thread starter suewalton21
  • Start date Start date
S

suewalton21

I have a worksheet for 37 addresses, showing various charges
I need to produce a single invoice for each address
Any help please
 
suewalton21 said:
I have a worksheet for 37 addresses, showing various charges
I need to produce a single invoice for each address
Any help please

Use Mail Merge (Word) with your worksheet as the data source. Google for
detailed instructions if needed.

V
 
suewalton21 said:
I have a worksheet for 37 addresses, showing various charges
I need to produce a single invoice for each address
Any help please

Use Mail Merge (Word) with your worksheet as the data source. Google for
detailed instructions if needed.

V
 
If you have a database of your addresses and an invoice template you can use
a simple looping macro

for i= 1 gto 37
with invoicetemplate
..cells(1,1)=cells(i,1)
..etc
end with
print invoice
next i
 
Hi,
If you are looking to summarize the charges by address assuming that your
data with your address are in column A and your charges in column B and then
in column D you have all the address and in column E you want to summarize
them use

=sumproduct(--(D2=$A$1:$A$10000),$B$1:$B$10000)

change range to fit your needs, copy formula down
 
Back
Top