Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
andreah
 
Posts: n/a
Default Take info on spreadsheet and turn it in a report


I am wondering if someone can help me. No one in my office including me
now if this is possible but..... I am needing to take information from
a spreadsheet with all of our customers and turn it into a report (like
an invoice) for each customer. Is that possible?


--
andreah
------------------------------------------------------------------------
andreah's Profile: http://www.excelforum.com/member.php...o&userid=26635
View this thread: http://www.excelforum.com/showthread...hreadid=399103

  #2   Report Post  
Bernie Deitrick
 
Posts: n/a
Default

andreah,

Set up your report printing to extract the data from your datatable using VLOOKUP formulas, all
keyed to one cell on the report sheet (let's say A1). Then use a macro like:

Sub DoReports()
Dim myCell As Range

For Each myCell In Worksheets("Data").Range("A2:A2000")
Worksheets("Report").Range("A1").Value = myCell.Value
Application.calculatefull
Worksheets("Report").Printout
Next myCell

End Sub

HTH,
Bernie
MS Excel MVP


"andreah" wrote in message
...

I am wondering if someone can help me. No one in my office including me
now if this is possible but..... I am needing to take information from
a spreadsheet with all of our customers and turn it into a report (like
an invoice) for each customer. Is that possible?


--
andreah
------------------------------------------------------------------------
andreah's Profile: http://www.excelforum.com/member.php...o&userid=26635
View this thread: http://www.excelforum.com/showthread...hreadid=399103



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
How do I turn off automatic date function in XL? bob condon Excel Worksheet Functions 4 March 7th 10 06:23 AM
Application to turn a table layout webpage back into a spreadsheet? Jamie Furlong Excel Discussion (Misc queries) 3 August 12th 05 09:40 PM
How do i turn the spreadsheet into a formula page? sameeha New Users to Excel 6 March 10th 05 06:09 PM
how to turn off email header with excel workbook larhere Excel Discussion (Misc queries) 0 January 5th 05 12:39 AM
Suggestions requested for vacation planning Excel spreadsheet echo144000 Excel Discussion (Misc queries) 1 December 14th 04 02:42 PM


All times are GMT +1. The time now is 10:57 PM.

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

About Us

"It's about Microsoft Excel"