Set Print Area

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hey all,
I'm trying to set the print area for a sheet after data is updated.
The populating range can vary constantly so I need to determine the last
column and the last row.
I think I'm missing it on the column part because I need to know the Row
Letter instead of the value?

Please help!

I'm using the following code:

Private Sub btnUpdate_Click()

Call K1_Review ' updates the current sheet

'set print area

Dim LRow As Integer
LRow = Range("A65536").End(xlUp).Row
Dim LCol As String
LCol = Range("CA18").End(xlToLeft).Column

'Range("A4: & LCol & LRow").Select
ActiveSheet.PageSetup.printarea = "$A$4:$" & LCol & "$" & LRow

End Sub
 
try something like

LCol = Range("CA18").End(xlToLeft).Column
range(cells(4,"a"),cells(lrow,lcol)).printout

or
LCol = Range("CA18").End(xlToLeft).Column

activesheet.pagesetup.printarea=range(cells(4,"a"),cells(lrow,lcol)).address
 
actually this might be better

LRow = cells(rows.count,"a").End(xlUp).Row
LCol = cells(18,columns.count).End(xlToLeft).Column
range(cells(4,"a"),cells(lrow,lcol)).printout
 
Back
Top