+ Reply to Thread
Results 1 to 14 of 14

VBA will hide columns, but not unhide them

Hybrid View

  1. #1
    Registered User
    Join Date
    01-15-2015
    Location
    Melbourne, Victoria
    MS-Off Ver
    Office 2013
    Posts
    8

    VBA will hide columns, but not unhide them

    G'day,

    I'm very new to VBA and am struggling with some (probably straight forward) code.

    Cell A1 contains a user input number between 100 and 410 (Term 1 week 0 through Term 4 week 10 for attendance purposes)

    I don't want the whole year's attendance sheet to show up; only the current week. I have entered the code below to test the first few weeks. It is successful in hiding the columns, but when I change the input number it won't unhide them. I'd greatly appreciate help in identifying what I'm doing wrong.
    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
        If Range("ZZ1").Value = 100 Then
            Columns("CO:OF").EntireColumn.Hidden = True
        ElseIf Range("ZZ1").Value = 101 Then
            Columns("O:OF").EntireColumn.Hidden = True
        ElseIf Range("ZZ1").Value = 102 Then
            Range("K:N,Y:OF").EntireColumn.Hidden = True
        Else: Columns("K:OF").EntireColumn.Hidden = False
        End If
    End Sub
    Thanks in advance!

    Marty
    Last edited by alansidman; 01-15-2015 at 08:26 PM. Reason: code tags

  2. #2
    Registered User
    Join Date
    05-23-2013
    Location
    California, USA
    MS-Off Ver
    Excel 2010
    Posts
    43

    Re: VBA will hide columns, but not unhide them

    It seems like you should have your if conditions always doing two actions:

    1. unhide all the columns that you want to be shown
    2. hide the columns you do not want to be shown

    Just a simple glance indicates that in order for you to hide columns you have to purposefully not enter 100, 101 or 102

    T

  3. #3
    Registered User
    Join Date
    01-15-2015
    Location
    Melbourne, Victoria
    MS-Off Ver
    Office 2013
    Posts
    8

    Re: VBA will hide columns, but not unhide them

    Thanks T,

    I did try something similar with a Hidden = False component to each If statement, but I'll give it another go...

  4. #4
    Forum Moderator alansidman's Avatar
    Join Date
    02-02-2010
    Location
    Steamboat Springs, CO
    MS-Off Ver
    MS Office 365 insider Version 2504 Win 11
    Posts
    24,709

    Re: VBA will hide columns, but not unhide them

    Code Tags Added
    Your post does not comply with Rule 3 of our Forum RULES. Use code tags around code.

    Posting code between [CODE] [/CODE] tags makes your code much easier to read and copy for testing, it also maintains VBA formatting.

    Highlight your code and click the # icon at the top of your post window. More information about these and other tags can be found at http://www.excelforum.com/forum-rule...rum-rules.html



    (Because you are new to the forum, I have added them for you today. Please take a few minutes to read all Forum Rules and comply in the future.)
    Alan עַם יִשְׂרָאֵל חַי


    Change an Ugly Report with Power Query
    Database Normalization
    Complete Guide to Power Query
    Man's Mind Stretched to New Dimensions Never Returns to Its Original Form

  5. #5
    Registered User
    Join Date
    01-15-2015
    Location
    Melbourne, Victoria
    MS-Off Ver
    Office 2013
    Posts
    8

    Re: VBA will hide columns, but not unhide them

    Thanks Alan,

    I've read the rules now. Thanks for going easy on me...

    Marty

  6. #6
    Registered User
    Join Date
    05-23-2013
    Location
    California, USA
    MS-Off Ver
    Excel 2010
    Posts
    43

    Re: VBA will hide columns, but not unhide them

    Sure, if you want send me a workbook with what you have and I can code it for you. Then I can explain what I did. Hard to understand fully what you're trying to do from the initial post.

    T

  7. #7
    Registered User
    Join Date
    01-15-2015
    Location
    Melbourne, Victoria
    MS-Off Ver
    Office 2013
    Posts
    8

    Re: VBA will hide columns, but not unhide them

    That would be amazing if you could get me started, T.
    Can I just upload the file here, or will I get into trouble for that? (I'm about to read all of the rules...)

    Also, I said A1 had the input, but it's actually ZZ1 in the file - calculated via a helper cell on the second worksheet. (I needed to standardise string length - Term 1 week 1 would be shorter than term 2 week 10 otherwise)

  8. #8
    Registered User
    Join Date
    05-23-2013
    Location
    California, USA
    MS-Off Ver
    Excel 2010
    Posts
    43

    Re: VBA will hide columns, but not unhide them

    Yep, you can post workbooks in the forum. Click the Advanced Reply option.

    In there you will see a section on managing attachments.

    Make sure to remove any sensitive data - just in case.

    Thanks,

    T

  9. #9
    Registered User
    Join Date
    01-15-2015
    Location
    Melbourne, Victoria
    MS-Off Ver
    Office 2013
    Posts
    8

    Re: VBA will hide columns, but not unhide them

    Attendance.xlsm

    Let's see if that worked... There's no sensitive information in here yet. Thanks again.

    Marty

  10. #10
    Forum Expert mikerickson's Avatar
    Join Date
    03-30-2007
    Location
    Davis CA
    MS-Off Ver
    Excel 2011
    Posts
    6,229

    Re: VBA will hide columns, but not unhide them

    Perhaps
    Private Sub Worksheet_Change(ByVal Target As Range)
        
            Columns("CO:OF").EntireColumn.Hidden = (Range("ZZ1").Value = 100)
        
            Columns("O:OF").EntireColumn.Hidden = (Range("ZZ1").Value = 101)
        
            Range("K:N,Y:OF").EntireColumn.Hidden = (Range("ZZ1").Value = 102)
        
    End Sub
    _
    ...How to Cross-post politely...
    ..Wrap code by selecting the code and clicking the # or read this. Thank you.

  11. #11
    Registered User
    Join Date
    01-15-2015
    Location
    Melbourne, Victoria
    MS-Off Ver
    Office 2013
    Posts
    8

    Re: VBA will hide columns, but not unhide them

    Thanks Mike,

    Getting closer... That works for the complex one (102), but it doesn't seem to do anything for 100 and, strangely, it seems to hide O:X for 101. I cannot fathom why...

  12. #12
    Registered User
    Join Date
    05-23-2013
    Location
    California, USA
    MS-Off Ver
    Excel 2010
    Posts
    43

    Re: VBA will hide columns, but not unhide them

    Try this:

    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
        
        With Worksheets("Attendance & Organisation")
        
          'Unhides all columns
          .Range("AA:ZZ").EntireColumn.Hidden = False
        
          'Hides specified columns as provided by ZZ
          If .Range("ZZ1").Value = 100 Then
              .Range("CO:OF").EntireColumn.Hidden = True
          ElseIf .Range("ZZ1").Value = 101 Then
              .Range("O:OF").EntireColumn.Hidden = True
          ElseIf .Range("ZZ1").Value = 102 Then
              .Range("K:N,Y:OF").EntireColumn.Hidden = True
          End If
        
        End With
        
    End Sub

  13. #13
    Registered User
    Join Date
    01-15-2015
    Location
    Melbourne, Victoria
    MS-Off Ver
    Office 2013
    Posts
    8

    Re: VBA will hide columns, but not unhide them

    Thanks. It still doesn't seem to want to unhide previously hidden columns though... I'll keep playing around with it. Thanks for your help.

    Marty

  14. #14
    Registered User
    Join Date
    05-23-2013
    Location
    California, USA
    MS-Off Ver
    Excel 2010
    Posts
    43

    Re: VBA will hide columns, but not unhide them

    Sorry - I made a typo...

    Try:

    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
        
        With Worksheets("Attendance & Organisation")
        
          'Unhides all columns
          .Range("A:ZZ").EntireColumn.Hidden = False
        
          'Hides specified columns as provided by ZZ
          If .Range("ZZ1").Value = 100 Then
              .Range("CO:OF").EntireColumn.Hidden = True
          ElseIf .Range("ZZ1").Value = 101 Then
              .Range("O:OF").EntireColumn.Hidden = True
          ElseIf .Range("ZZ1").Value = 102 Then
              .Range("K:N,Y:OF").EntireColumn.Hidden = True
          End If
        
        End With
        
    End Sub

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Hide and Unhide Columns
    By DODGE in forum Excel General
    Replies: 3
    Last Post: 11-27-2011, 05:36 PM
  2. Hide/Unhide columns
    By N164PJ in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 12-22-2008, 02:30 AM
  3. Hide and unhide columns
    By Frederic in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 09-14-2005, 05:05 PM
  4. Hide/Unhide Columns
    By Jonsson in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 05-23-2005, 06:24 AM
  5. hide / unhide columns
    By appeng in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 03-25-2005, 07:06 PM

Tags for this Thread

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