Display or hide chart using toggle button

ignes

New Member
Joined
Jan 23, 2014
Messages
1
Hi,

I am trying to insert a toggle or command button that will show and hide a chart that is on a different sheet in the same workbook.

I have used the below command button to achieve this with a chart on the same worksheet.
Private Sub CommandButton1_Click()
If Me.ChartObjects("Chart 2").Visible Then
Me.ChartObjects("Chart 2").Visible = False
CommandButton1.Caption = "Show Chart"
Else
Me.ChartObjects("Chart 2").Visible = True
CommandButton1.Caption = "Hide Chart"
End If
End Sub

I have tried other options to achieve this for a chart that is on another sheet but it is not working.

Please help.
Thanks.
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
You simply need to reference the second sheet something like this:

Private Sub CommandButton1_Click()
If Sheets("Sheet2").ChartObjects("Chart 1").Visible Then
Sheets("Sheet2").ChartObjects("Chart 1").Visible = False
CommandButton1.Caption = "Show Chart"
Else
Sheets("Sheet2").ChartObjects("Chart 1").Visible = True
CommandButton1.Caption = "Hide Chart"
End If
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,919
Messages
6,122,260
Members
449,075
Latest member
staticfluids

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top