Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.charting
|
|||
|
|||
![]()
I have worksheets with multiple charts on them. I would like to be able to
hide all of the charts and call each one up when I need it. |
#2
![]()
Posted to microsoft.public.excel.charting
|
|||
|
|||
![]()
One solution is to use VBA:
Assuming your worksheet is named "Sheet1" and one of the charts is named "Cht1", to hide the chart use this macro: Sub HideChart() Worksheets("Sheet1").Shapes("Cht1").Visible = False End Sub To show the chart, use this macro: Sub ShowChart() Worksheets("Sheet1").Shapes("Cht1").Visible = True End Sub -- John Mansfield http://cellmatrix.net "curious engineer" wrote: I have worksheets with multiple charts on them. I would like to be able to hide all of the charts and call each one up when I need it. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
hiding charts w/o data | Excel Worksheet Functions | |||
hiding zero values in stacked bar charts | Charts and Charting in Excel | |||
hiding zero values in charts | Charts and Charting in Excel | |||
Hiding 0 values in line charts | Charts and Charting in Excel | |||
Hiding Zeros in Stacked Bar Charts | Charts and Charting in Excel |