manually specifing a range in the code below

G

Guest

see the code
i want to create a XY scatter chart, using data from
y-axis = data from column 1 - row 3 to row 11 an
x-axis = data from column 4 - row 3 to row 11

Charts.Ad
ActiveChart.ChartType = xlXYScatterSmoothNoMarker
ActiveChart.SeriesCollection(1).Delet
ActiveChart.SeriesCollection.NewSerie
ActiveChart.SeriesCollection.NewSerie
ActiveChart.SeriesCollection(1).XValues = "='Sheet1'!R3C4:R11C4
ActiveChart.SeriesCollection(1).Values = "='Sheet1'!R3C1:R11C1

but the no of rows can be variable, so how can i pass no of rows (like "from row 3 to row 12" or "from row 3 to row 15") to the proceedure. i just want to pass 11 or 12 or 15 or whatever, instead of saying "Sheet1'!R3C4:R11C4

Is there any way..pls hel
 
D

David

You have to find the row number and put it in a variable
ie. get to the place (address) and find the row number -
ThisRow = Activecell.Row, then use that variable in your
Code ie.

ActiveChart.SeriesCollection(1).XValues = "='Sheet1'!R" &
(ThisRow) & "C4:R11C4"

(Above - ThisRow replaces the 3)

Thanks
-----Original Message-----
see the code,
i want to create a XY scatter chart, using data from
y-axis = data from column 1 - row 3 to row 11 and
x-axis = data from column 4 - row 3 to row 11.

Charts.Add
ActiveChart.ChartType = xlXYScatterSmoothNoMarkers
ActiveChart.SeriesCollection(1).Delete
ActiveChart.SeriesCollection.NewSeries
ActiveChart.SeriesCollection.NewSeries
ActiveChart.SeriesCollection(1).XValues = "='Sheet1'! R3C4:R11C4"
ActiveChart.SeriesCollection(1).Values = "='Sheet1'! R3C1:R11C1"

but the no of rows can be variable, so how can i pass no
of rows (like "from row 3 to row 12" or "from row 3 to
row 15") to the proceedure. i just want to pass 11 or 12
or 15 or whatever, instead of saying "Sheet1'!R3C4:R11C4"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top