Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
vv vv is offline
external usenet poster
 
Posts: 5
Default Invoice directly from EXCEL?

Hi anybody,



EXCEL. Is it possible to merge data from LIST1 to invoice on LIST2? Every
row in LIST1, should generate and print new invoice. I only know how to do
it by Word. Many Thanks, Vladi.


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,441
Default Invoice directly from EXCEL?

Yes.

You need to either tie the values on List2 to a key value of one cell using VLOOKUP formulas, or use
a macro to step through data on LIST1 and place it on sheet LIST2 prior to printing (once for each
row on LIST1).

For example:

For Each myCell In Worksheets("LIST1").Range("A2:A100")
If myCell.Value < "" Then
Worksheets("LIST2).Range("B1").Value = myCell(1,1).Value
Worksheets("LIST2).Range("H12").Value = myCell(1,2).Value
Worksheets("LIST2).Range("G13").Value = myCell(1,3).Value
Worksheets("LIST2).Range("D4").Value = myCell(1,4).Value
Worksheets("LIST2).Range("C15").Value = myCell(1,5).Value
Worksheets("LIST2).PrintOut
End If
Next myCell

HTH,
Bernie
MS Excel MVP


"vv" <microsoft.public.cs.desktop wrote in message ...
Hi anybody,



EXCEL. Is it possible to merge data from LIST1 to invoice on LIST2? Every row in LIST1, should
generate and print new invoice. I only know how to do it by Word. Many Thanks, Vladi.




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
invoice toolbar for invoice calcuation and assign number KarenY Excel Discussion (Misc queries) 15 March 16th 07 12:02 PM
EXCEL. Print invoice directly from list? vv Excel Programming 2 December 11th 05 09:50 PM
missing invoice toolbar when save customised invoice M.G New Users to Excel 1 September 26th 05 07:18 AM
Invoice templet Excel97 to 2003 invoice toolbar missing MarolynInMarion Excel Discussion (Misc queries) 0 August 19th 05 07:15 PM
How do I change the invoice number assigned in Invoice template... akress Excel Discussion (Misc queries) 1 February 28th 05 06:36 PM


All times are GMT +1. The time now is 01:15 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"