Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi all,
I want to step through the charts embedded in a worksheet and selectively delete some of them. My approach, reflected in the code below, is to change the chartarea color to something pretty garish so that I can see which chart is which (there's 106 of them), decide if it should be deleted, and if not, restore the chartarea color. Here's the problem: this is a fine idea for charts I can see (i.e., are in the visible part of the window), but it clearly is useless if I can't see the chart. So, how do I move the window so that the chart being operated on is in the viewing window? Sub DelCharts() Dim Last As Long, i As Long Dim CI, Ans Last = Worksheets("Test").ChartObjects.Count For i = Last To 1 Step -1 Application.StatusBar = "Processing Chart " & i CI = Worksheets("Test").ChartObjects _ (i).Chart.ChartArea.Interior.ColorIndex Worksheets("Test").ChartObjects _ (i).Chart.ChartArea.Interior.ColorIndex = 4 Ans = MsgBox("Delete?", vbYesNo) If Ans = vbYes Then Worksheets("Test").ChartObjects(i).Delete Else Worksheets("Test").ChartObjects (i).Chart.ChartArea.Interior.ColorIndex = CI End If Next i Application.StatusBar = "" End Sub Oh, BTW, this works as expected if run from the VBE, but it doesn't change the chart colors if run from the worksheet. That's not a big deal for me right now - this is a once-off effort to solve another problem, but I'm curious why it works in one case but not the other. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Moving and resizing the file window | Excel Discussion (Misc queries) | |||
Arrow Keys Moving Window Frame instead of Moving Between Cells | Excel Discussion (Misc queries) | |||
Sub-window not moving or maximizing? | Excel Discussion (Misc queries) | |||
undo split window moving at the same time | Excel Discussion (Misc queries) | |||
Moving chart window in macro | Excel Programming |