+ Reply to Thread
Results 1 to 3 of 3

Can you delete all hidden columns in an area in one move?

  1. #1
    Gizmofied
    Guest

    Can you delete all hidden columns in an area in one move?

    I am wondering if it is possible in Excel to permanently delete all hidden
    columns in an area of a worksheet with one move (without having to unhide
    every column and then manually delete each column)?

  2. #2
    Jim Rech
    Guest

    Re: Can you delete all hidden columns in an area in one move?

    This might do it. Tested lightly<g>

    Sub DelAllHiddenCols()
    Dim Col As Range
    Dim DelCols As Range
    For Each Col In Rows(1).EntireColumn
    If Col.Hidden Then
    If DelCols Is Nothing Then
    Set DelCols = Col
    Else
    Set DelCols = Union(DelCols, Col)
    End If
    End If
    Next
    If Not DelCols Is Nothing Then DelCols.Delete
    End Sub


    --
    Jim
    "Gizmofied" <Gizmofied@discussions.microsoft.com> wrote in message
    news:C4ED19ED-C827-46BC-9ADE-37F089114DBB@microsoft.com...
    |I am wondering if it is possible in Excel to permanently delete all hidden
    | columns in an area of a worksheet with one move (without having to unhide
    | every column and then manually delete each column)?



  3. #3
    Gizmofied
    Guest

    Re: Can you delete all hidden columns in an area in one move?

    Thank you - I will try this out.

    "Jim Rech" wrote:

    > This might do it. Tested lightly<g>
    >
    > Sub DelAllHiddenCols()
    > Dim Col As Range
    > Dim DelCols As Range
    > For Each Col In Rows(1).EntireColumn
    > If Col.Hidden Then
    > If DelCols Is Nothing Then
    > Set DelCols = Col
    > Else
    > Set DelCols = Union(DelCols, Col)
    > End If
    > End If
    > Next
    > If Not DelCols Is Nothing Then DelCols.Delete
    > End Sub
    >
    >
    > --
    > Jim
    > "Gizmofied" <Gizmofied@discussions.microsoft.com> wrote in message
    > news:C4ED19ED-C827-46BC-9ADE-37F089114DBB@microsoft.com...
    > |I am wondering if it is possible in Excel to permanently delete all hidden
    > | columns in an area of a worksheet with one move (without having to unhide
    > | every column and then manually delete each column)?
    >
    >
    >


+ 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