Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi all!
I was trying to plot values for 2 variables as a XY scatter plot i Excel, using Macros and recorded a macro while performing the abov task. The following is the macro I recorded. Sub le( ) Charts.Add ActiveChart.ChartType = xlXYScatter ActiveChart.SetSourceData Source:=Sheets("Comparison of LE ti distance"). _ Range("L6") ActiveChart.SeriesCollection.NewSeries ActiveChart.SeriesCollection.NewSeries ActiveChart.SeriesCollection(1).XValues = _ "='Comparison of LE tip distance'!R2C4:R102C4" ActiveChart.SeriesCollection(1).Values = _ "='Comparison of LE tip distance'!R2C2:R102C2" ActiveChart.Location Whe=xlLocationAsObject, Name:= _ "Comparison of LE tip distance" End Sub However, in this case since I manually selected the require rows/columns for the graph, we can see that the cells ranging fro !R2C4:R102C4 were selected etc.... This might not be the general case. Hence I counted the no: of activ rows and stored it into a variable called 'i'. I was wondering if ther would be a way to select the cells like !R2C4:R"i"C4 instead o !R2C4:R102C4, so that the code can be generalized. I would appreciate your suggestions guys. Thanks alot. Arun. Vtec Corp -- Message posted from http://www.ExcelForum.com |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How can I auto number rows only when data is entered in the same r | Excel Discussion (Misc queries) | |||
How do you auto-number a large list of rows in Excel? | Excel Discussion (Misc queries) | |||
Auto Number the Rows of Auto Filter Result | Excel Discussion (Misc queries) | |||
auto number rows when printing | Excel Discussion (Misc queries) | |||
Selecting a large number of rows, but not all | New Users to Excel |