G
Guest
Let's say I have the following
ActiveChart.SeriesCollection(1).XValues = "B2:B20"
ActiveChart.SeriesCollection(1).Values = "D220"
How do I go about extracting the XValues and Values so that I can display
"B2:B20" and "D220" in VBA. I've got
xval = activechart.seriescollection(1).Xvalues
xval is currently defined as a string. When I run, I get a run time error
'13' Type mismatch.
Thanks,
Barb
Thanks in advance.
ActiveChart.SeriesCollection(1).XValues = "B2:B20"
ActiveChart.SeriesCollection(1).Values = "D220"
How do I go about extracting the XValues and Values so that I can display
"B2:B20" and "D220" in VBA. I've got
xval = activechart.seriescollection(1).Xvalues
xval is currently defined as a string. When I run, I get a run time error
'13' Type mismatch.
Thanks,
Barb
Thanks in advance.