Reduce columns and rows count?

M

murat

Hello everyone,

Excel sheet has 256 columns and 65536 rows as default. Can I reduce their
count without hiding them? I want to clear unnecessary columns and rows
permanently.

How can i do it?

thanks.
 
G

Gord Dibben

murat

Cannot be done.

Hiding the unused rows and columns then protecting the sheet is the usual
method.

Setting the scrollarea using VBA is another method.

Note: Setting ScrollArea is good for that session only and only the
activesheet. Has to be reset next time workbook is opened.

Best to place the code into a WorkBook_Open Sub in ThisWorkbook module and
specify which worksheet.

Private Sub WorkBook_Open()
Sheets("YourSheet").ScrollArea = "A1:M36"
End Sub


Gord Dibben Excel MVP
 

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

Top