I am writing a macro that needs to indentify the active chart type, which should be fine but when interrogating any XYScatter OR Bubble(!!) chart, the value returned is always -4169 (for xlXYScatter) See code example below...
I need to separate my Bubbles from my Scatters! Help!
Killian
With a chart selected, run this code for a dialog box displaying the chart type code
'**************************************************
Dim Msg, Style, Title, Response
Msg = "Chart Type is" & " " & ActiveChart.Type
Style = vbOKCancel + vbInformation
Title = "ML DTP Chart Tools"
Response = MsgBox(Msg, Style, Title)
'**************************************************
Chart Codes:
I need to separate my Bubbles from my Scatters! Help!
Killian
With a chart selected, run this code for a dialog box displaying the chart type code
'**************************************************
Dim Msg, Style, Title, Response
Msg = "Chart Type is" & " " & ActiveChart.Type
Style = vbOKCancel + vbInformation
Title = "ML DTP Chart Tools"
Response = MsgBox(Msg, Style, Title)
'**************************************************
Chart Codes: