View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
FirstVette52 FirstVette52 is offline
external usenet poster
 
Posts: 37
Default Dynamic Print Area

I need to set the print area for an ever changing range of rows (may start at
row 200 on one execution, may start at Row 300 on the next), but no wider
than Column G. The length of the Print Area is also ever changing, therefore
I have used a formula that finds the last occupied row.

I made some changes to the .Range () and now it no longer finds the last
occupied row (finds all BUT the last row). IF 8 rows are occupied, THEN
output is 7 rows.

Can anyone see what I'm doing wrong?

Sub Print_Preview()

Dim SH As Worksheet
Dim rng As Range
Dim LRow As Long
Dim BldRngeTop 'First cell in Print Area
Dim BldRngeWdth 'Last Column in Print Area

BldRngeTop = Range("Extract_Area_FirstCell").Address
BldRngeWdth = "G"

Set SH = ActiveSheet

With SH
LRow = SH.Cells(Rows.Count, BldRngeWdth).End(xlUp).Row
Set rng = .Range(BldRngeTop & ":" & BldRngeWdth & LRow)
.PageSetup.PrintArea = rng.Address
End With

ActiveWindow.SelectedSheets.PrintPreview
End Sub

Thanks for any help you might give.
--
FirstVette52