how to select print area within the macro if report is going

ap1

New Member
Joined
Mar 11, 2002
Messages
26
I want to know how to select print area within the macro if report is going to be of varied length within a macro if i do ctrl+shift+end in the macro it sets it to the length of current report but when i run a longer report the print area is not proper

any idea?
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
If your print range is in Columns A:H and you don't know how long it will be, this should work for you.

Dim ReportRange as Range

'Sets Ranges from A1 to
'the last cell with data in column H
'which is searched for by starting with cell H65536 and
'going up to the last cels with data in column H
Set ReportRange = Range("A1",Range("H65536").End(xlup).Address)


ReportRange.Select
 
Upvote 0

Forum statistics

Threads
1,213,490
Messages
6,113,957
Members
448,535
Latest member
alrossman

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