How To PrintArea Until Last Row With Data?

aedctalk

Board Regular
Joined
Oct 9, 2010
Messages
156
Hi,

I'm trying to PrintArea until last row of data.

Range("B4:AE94").PrintOut

However. We add and delete rows constantly and i dont want to have to always go in VBA and update the AE94 #

Would the below work?

Range("B4:AE" & lastrow).PrintOut or somethign like that?

The other issue i'm having is between B4:AE94 i have spaces or empty rows within the the entire Range.. Its only one skipped row here and there.. would the solution be to make it look for the first instance of 3 empty rows?

Thanks for any help! :)
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
there is rowcount, can assign to a variable. it counts the number of continuos rows with data (assuming no blank rows)
 
Upvote 0

Forum statistics

Threads
1,224,521
Messages
6,179,291
Members
452,902
Latest member
Knuddeluff

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