ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Charts and Charting in Excel (https://www.excelbanter.com/charts-charting-excel/)
-   -   Hide a chart (https://www.excelbanter.com/charts-charting-excel/171994-hide-chart.html)

E Gray R&A

Hide a chart
 
My Boss is working with Excel 97 and I'm in 2007...he hid a chart in his
version and I cannot unhide it...have looked everywhere and tried all sorts
of commands with no result...anyone else having this problem?

ShaneDevenshire

Hide a chart
 
Hi,

Assuming he hid the sheet - choose Home, Format, Hide & Unhide, Unhide Sheet.

If the chart has been hidden using the 2003 Objects, Hide command - choose
Office Button, Excel Options, Advanced, Display options for this workbook,
For objects, show: All.
--
Cheers,
Shane Devenshire


"E Gray R&A" wrote:

My Boss is working with Excel 97 and I'm in 2007...he hid a chart in his
version and I cannot unhide it...have looked everywhere and tried all sorts
of commands with no result...anyone else having this problem?


Jon Peltier

Hide a chart
 
Does he know what he did (oh yeah, the boss, probably not). He may have
deleted the rows or columns under the chart. This doesn't delete the chart,
it merely makes its height or width equal to zero. You could try a macro
like this:

Sub FattenUpCharts()
Dim ChOb As ChartObject
For Each ChOb In ActiveSheet.ChartObjects
If ChOb.Height < 1 then ChOb.Height = 200
If ChOb.Width < 1 then ChOb.Width= 300
Next
End Sub

If in fact the chart has been made invisible, you could try this:

Sub ShowTheCharts()
Dim ChOb As ChartObject
For Each ChOb In ActiveSheet.ChartObjects
ChOb.Visible = True
Next
End Sub

In 2007, you can go to Find and Select (far right of the Home tab), and
choose Selection Pane. This lists all shapes on the active sheet, visible or
hidden, and you can check the box to make each one visible.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
Peltier Technical Services, Inc. - http://PeltierTech.com
_______


"E Gray R&A" <E Gray wrote in message
...
My Boss is working with Excel 97 and I'm in 2007...he hid a chart in his
version and I cannot unhide it...have looked everywhere and tried all
sorts
of commands with no result...anyone else having this problem?





All times are GMT +1. The time now is 02:43 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com