C
cogent
Hello
Two questions.
I am creating a chart by macro only because the chart seems not to accept
NAMED RANGES when defining the y values and x values. Does that seem right?
Could it be that named ranges cannot be used to define data source?
Assuming that named ranges cannot be used (what a pity), I have tried macros
but I have also had trouble setting up the Bubble Chart. I get a Run Time
Error 1004 with the follwoing code (generalized):
Sub MakeChart()
Dim Cht As Chart
Set Cht = Charts.Add
With Cht
.ChartType = xlBubble3DEffect
[blah blah]
End With
I get the same 1004 error whether the Chart Type is set to xlBubble, or the
constant 15. I tried every other Chart Type including 3D Columns and they
work fine. What gives with the Bubble Charts?
W
Two questions.
I am creating a chart by macro only because the chart seems not to accept
NAMED RANGES when defining the y values and x values. Does that seem right?
Could it be that named ranges cannot be used to define data source?
Assuming that named ranges cannot be used (what a pity), I have tried macros
but I have also had trouble setting up the Bubble Chart. I get a Run Time
Error 1004 with the follwoing code (generalized):
Sub MakeChart()
Dim Cht As Chart
Set Cht = Charts.Add
With Cht
.ChartType = xlBubble3DEffect
[blah blah]
End With
I get the same 1004 error whether the Chart Type is set to xlBubble, or the
constant 15. I tried every other Chart Type including 3D Columns and they
work fine. What gives with the Bubble Charts?
W