Formatting Macro

e_loveall

New Member
Joined
Aug 29, 2002
Messages
35
I recorded a formatting macro for a report that we use all the time. We import data from an AS400 system, and then my report formats the raw data into "pretty" report.

My number of columns will always be the same, but the number of rows won't. Is there a way to set the print area with the fixed number of columns but leave the row number undefined since it will be different every time?

Thanks!
 
How about a simple print macro?

Sub PrintIt()
Range("$A$1").Select
Selection.CurrentRegion.Select
Selection.PrintOut Copies:=1, Collate:=True
End Sub
 
Upvote 0
I see what the code is doing. I took out the print code because I don't need to actually print out the report (it gets emailed). However, when I tried to alter the page setup in the preview section, I get a message that says not enough memory, and my system blows up.

Basically, the report goes from A1:X(whatever row). Any other ideas on how to leave this undefined?
 
Upvote 0

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top