+ Reply to Thread
Results 1 to 5 of 5

Hide rows automatically

Hybrid View

  1. #1
    Registered User
    Join Date
    04-26-2012
    Location
    Doncaster
    MS-Off Ver
    Excel 2003
    Posts
    3

    Hide rows automatically

    Hi, first time on the forum.

    I have an excel 2003 spreadsheet and would like to hide different ranges of rows based on the value of one cell.

    If C3 = 12 then hide rows 26 to 104
    If C3 = 11 then hide rows 5 to 24 and rows 49 to 104
    IF C3 = 10 then hide rows 5 to 43 and rows 71 to 104
    IF C3 = 9 then hide rows 5 to 65 and rows 90 to 104
    IF C3 = 8 then hide rows 5 to 86

    Worksheet is called "UNDER 15's Knock out"

    Any help would be much appreciated.

    Thanks

  2. #2
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Hide rows automatically

    You are making manual changes to cell C3? If so, you can put a macro into the sheet module to specifically watch these manual changes to cell C3 and hide/unhide rows based on the current value. Right-click the tab and select View Code, paste in this sample code:

    Option Explicit
    
    Private Sub Worksheet_Change(ByVal Target As Range)
    
    If Not Intersect(Target, [C3]) Is Nothing Then
        Range("5:104").EntireRow.Hidden = False
    
        Select Case [C3].Value
            Case 12:    Range("26:104").EntireRow.Hidden = True
            Case 11:    Range("5:24, 49:104").EntireRow.Hidden = True
            Case 10:    Range("5:43, 71:104").EntireRow.Hidden = True
            Case 9:     Range("5:65, 90:104").EntireRow.Hidden = True
            Case 8:     Range("5:86").EntireRow.Hidden = True
        End Select
    End If
    
    End Sub
    _________________
    Microsoft MVP 2010 - Excel
    Visit: Jerry Beaucaire's Excel Files & Macros

    If you've been given good help, use the icon below to give reputation feedback, it is appreciated.
    Always put your code between code tags. [CODE] your code here [/CODE]

    ?None of us is as good as all of us? - Ray Kroc
    ?Actually, I *am* a rocket scientist.? - JB (little ones count!)

  3. #3
    Registered User
    Join Date
    04-26-2012
    Location
    Doncaster
    MS-Off Ver
    Excel 2003
    Posts
    3

    Re: Hide rows automatically

    Thanks the Cell C£ is calculated by the addition of two Cells in a different worksheet.

  4. #4
    Registered User
    Join Date
    04-26-2012
    Location
    Doncaster
    MS-Off Ver
    Excel 2003
    Posts
    3

    Re: Hide rows automatically

    Thanks, the value in Cell 3 is calculated by the addition of two pother cells in a different worksheet.

  5. #5
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Hide rows automatically

    Like so, then:
    Private Sub Worksheet_Calculate()
        Range("5:104").EntireRow.Hidden = False
    
        Select Case [C3].Value
            Case 12:    Range("26:104").EntireRow.Hidden = True
            Case 11:    Range("5:24, 49:104").EntireRow.Hidden = True
            Case 10:    Range("5:43, 71:104").EntireRow.Hidden = True
            Case 9:     Range("5:65, 90:104").EntireRow.Hidden = True
            Case 8:     Range("5:86").EntireRow.Hidden = True
        End Select
    End Sub

+ 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