following is the code
Charts.Add
ActiveChart.ChartType = xlBubble
ActiveChart.SetSourceData Source:=Sheets("Sheet1").Range("E7")
ActiveChart.SeriesCollection.NewSeries
ActiveChart.SeriesCollection(1).XValues = "=Sheet2!R1C2"
ActiveChart.SeriesCollection(1).Values = "=Sheet2!R1C3"
ActiveChart.SeriesCollection(1).Name = "=Sheet2!R1C1"
ActiveChart.SeriesCollection(1).BubbleSizes = "=Sheet2!R1C4"
i am getting problem at passing index to SeriesCollection Property
How can i pass the index to SeriesProperty
Please give me any suggestion
Thanks is advance
Regards
Jaya Prakaksh