Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Hello all, Could someone help me on this matter. Here is the code, and I don't se why it is not working. It doesn't loop through the chart objects tha are on the sheet. Sub SetYScaleAllNew(AutoScale As Boolean, YMax As Long, YMin As Long) Dim myChart As ChartObject Dim myChartCollection As ChartObjects numChart = Worksheets("All").ChartObjects.Count '<<< this gives m that there are 6 of them Set myChartCollection = Worksheets("All").ChartObjects For Each myChart In myChartCollection With myChart.Chart If (AutoScale = False) Then .Axes(2, xlPrimary).CrossesAt = YMin .Axes(2, xlPrimary).MaximumScale = YMax .Axes(2, xlPrimary).MinimumScale = YMin .Axes(2, xlPrimary).MajorUnit = Abs(YMax - YMin) / 10 .Axes(2, xlPrimary).MaximumScaleIsAuto = False .Axes(2, xlPrimary).MinimumScaleIsAuto = False Else .Axes(2, xlPrimary).MajorUnitIsAuto = True .Axes(2, xlPrimary).MaximumScaleIsAuto = True .Axes(2, xlPrimary).MinimumScaleIsAuto = True .Axes(2, xlPrimary).CrossesAt = ActiveChart.Axes(2 xlPrimary).MinimumScale End If End With Next myChart End Sub Thank you in advance. Iva -- Intellihom ----------------------------------------------------------------------- Intellihome's Profile: http://www.msusenet.com/member.php?userid=147 View this thread: http://www.msusenet.com/t-187057402 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Problem adding charts using Do-Loop Until loop | Excel Programming | |||
Would a loop work? | Excel Programming | |||
Why doesn't my loop work? | Excel Programming | |||
HELP!!!! Can't stop a loop (NOT an infinite loop) | Excel Programming |