Limit workbook size

  • Thread starter Thread starter R D S
  • Start date Start date
R

R D S

Hi,
Can someone please remind me how to limit the size of a sheet?
I dont need anything past V:30

Thanks,
Rick
 
Maybe just hiding columns W:IV and rows 31:65536.

They're always going to exist, though.
 
Hi

Try entering this code in the "ThisWorkbook" module.

Private Sub Workbook_Open()
With Sheets("Sheet1")
..scrollarea = ""
..scrollarea = "A1:V30"
End With
End Sub

--


XL2003
Regards

William
(e-mail address removed)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top