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
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
Sorry i posted in the wrong section, thanks for moving me!
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.
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?
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.
Okay.....Got it
Thanks
Glad to help and thanks for rep+.![]()
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks