+ Reply to Thread
Results 1 to 4 of 4

Reduce columns and rows count?

  1. #1
    murat
    Guest

    Reduce columns and rows count?

    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.

  2. #2
    JulieD
    Guest

    Re: Reduce columns and rows count?

    Hi

    AFAIK no, only by hiding them

    Cheers
    JulieD

    "murat" <murat@discussions.microsoft.com> wrote in message
    news:2748FFB8-A8D0-449C-8360-67EDA8E49EE9@microsoft.com...
    > 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.




  3. #3
    Gord Dibben
    Guest

    Re: Reduce columns and rows count?

    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

    On Wed, 16 Mar 2005 07:13:02 -0800, "murat" <murat@discussions.microsoft.com>
    wrote:

    >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.



  4. #4
    murat
    Guest

    RE: Reduce columns and rows count?

    I'm grateful for your interest.
    Thanks a lot!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1