Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Excel / New Users / May 2008

Tip: Looking for answers? Try searching our database.

Report Manager or Alternative?

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Cayenne - 19 May 2008 04:16 GMT
Using Excel 2003, I want to create a "report" with each row a separate page,
(printed), with my own custom formatted layout. (A dirty solution is to
transpose the page, and expand the columns so wide that they only print the
first+1 column on each page.)

I never tried report manager, and I can't get it to install via MS
instructions/DL page. From my reading it looks like I'm not the only one with
this problem, but I'm not even sure that Report Manager Add-In is what I need
for this application.

TIA
Jim Cone - 19 May 2008 13:10 GMT
This short macro will print each row in the selection.  It will skip any blank rows.
Select the rows to print and then run the code...
'---
Sub PrintEachRow()
'06/30/2005 - Jim Cone
Dim rngPrint As Excel.Range
Dim rngRow As Excel.Range
Set rngPrint = Application.Intersect(Selection, ActiveSheet.UsedRange)

If Not rngPrint Is Nothing Then
  For Each rngRow In rngPrint.Rows
      If Application.CountA(rngRow) > 0 Then
         rngRow.PrintOut copies:=1
      End If
  Next
End If
Set rngPrint = Nothing
Set rngRow = Nothing
End Sub
'--
Jim Cone
Portland, Oregon  USA
http://www.realezsites.com/bus/primitivesoftware
(Excel Add-ins / Excel Programming)

"Cayenne" <Cayenne@discussions.microsoft.com>
wrote in message
Using Excel 2003, I want to create a "report" with each row a separate page,
(printed), with my own custom formatted layout. (A dirty solution is to
transpose the page, and expand the columns so wide that they only print the
first+1 column on each page.)

I never tried report manager, and I can't get it to install via MS
instructions/DL page. From my reading it looks like I'm not the only one with
this problem, but I'm not even sure that Report Manager Add-In is what I need
for this application.

TIA
Cayenne - 20 May 2008 02:43 GMT
Thanks, Jim.
I'm looking for something a little more robust, maybe?
I want to layout each page to look like a handsome form, with multiple
columns and each cell  exactly where I want it, along with it's label.

>  
> This short macro will print each row in the selection.  It will skip any blank rows.
[quoted text clipped - 35 lines]
>
> TIA
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.