+ Reply to Thread
Results 1 to 7 of 7

Code to hide Rows

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    05-30-2015
    Location
    Dubai
    MS-Off Ver
    Excel 2016 Mac & PC & 365
    Posts
    633

    Code to hide Rows

    Hi,

    I have 2 charts, one in Columns J:T and one in V:AF

    I always want one showing and one hidden depending on the cell value G:1, either 1 or Zero

    Can someone help me with some code, please

    Kevin

  2. #2
    Forum Contributor
    Join Date
    05-30-2015
    Location
    Dubai
    MS-Off Ver
    Excel 2016 Mac & PC & 365
    Posts
    633

    Re: Code to hide Rows

    Sorry i posted in the wrong section, thanks for moving me!

  3. #3
    Forum Guru bakerman2's Avatar
    Join Date
    10-03-2012
    Location
    Antwerp, Belgium
    MS-Off Ver
    MSO Home and Business 2024
    Posts
    7,318

    Re: Code to hide Rows

    Something to start with.
    In Sheet module.
    Private Sub Worksheet_Change(ByVal Target As Range)
        If Target = vbNullString Then Exit Sub
        If Target.Address = "$G$1" Then
            Select Case Target.Value
                Case 0
                    Columns("J:T").Hidden = True
                    Columns("V:AF").Hidden = False
                Case 1
                   Columns("V:AF").Hidden = True
                   Columns("J:T").Hidden = False
            End Select
        End If
    End Sub
    Avoid using Select, Selection and Activate in your code. Use With ... End With instead.
    You can show your appreciation for those that have helped you by clicking the * at the bottom left of any of their posts.

  4. #4
    Forum Contributor
    Join Date
    05-30-2015
    Location
    Dubai
    MS-Off Ver
    Excel 2016 Mac & PC & 365
    Posts
    633

    Re: Code to hide Rows

    Thank you.......I have entered the code into a module

    When I try to run it the macro box opens asking for a name?, naming it just opens another module

    What am i doing wrong?

  5. #5
    Forum Guru bakerman2's Avatar
    Join Date
    10-03-2012
    Location
    Antwerp, Belgium
    MS-Off Ver
    MSO Home and Business 2024
    Posts
    7,318

    Re: Code to hide Rows

    Not just A module. You must pu this into the sheet module of the Chart sheet.

    To do so right click on chart sheet tab and select View Code. Paste the code in the right window.

  6. #6
    Forum Contributor
    Join Date
    05-30-2015
    Location
    Dubai
    MS-Off Ver
    Excel 2016 Mac & PC & 365
    Posts
    633

    Re: Code to hide Rows

    Okay.....Got it
    Thanks

  7. #7
    Forum Guru bakerman2's Avatar
    Join Date
    10-03-2012
    Location
    Antwerp, Belgium
    MS-Off Ver
    MSO Home and Business 2024
    Posts
    7,318

    Re: Code to hide Rows

    Glad to help and thanks for rep+.

+ 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. VBA code to hide rows and for Vlookup
    By usama5788 in forum Excel General
    Replies: 1
    Last Post: 06-15-2017, 04:53 PM
  2. code to hide specific rows
    By kosherboy in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 09-23-2016, 11:05 AM
  3. [SOLVED] Code to hide rows
    By MissDB in forum Excel Programming / VBA / Macros
    Replies: 11
    Last Post: 10-09-2015, 07:31 PM
  4. code for hide rows
    By swfarm in forum Excel Programming / VBA / Macros
    Replies: 19
    Last Post: 04-18-2014, 11:30 AM
  5. Code to Hide and Unhide Rows
    By jcoulter in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 01-13-2012, 10:38 AM
  6. Code to hide rows
    By dezmond in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 02-25-2011, 09:54 AM
  7. Code to hide rows = 0
    By RunHard in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 07-12-2009, 05:15 AM

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