kosmoclone
New Member
- Joined
- Mar 28, 2011
- Messages
- 7
Hi,
I'm trying to plot a range of numbers:
Col G Col H
10 4.5
20 6
30 8.3
I'm selecting the data using
[G9].select
selection.End(xlDown).select
k = ("G9:" & "G" & Activecell.Row)
[H9].select
selection.End(xlDown).select
o = ("H9:" & "H" & Activecell.Row)
Range(k,0).select
'This will actually be viewed as Range("G9:G13","H9:H13") and I need it to be: Range("G9:G13, H9:H13) 'Notice the inner quotes are gone'
Activesheet.Shapes.AddChart.Select
ActiveChart.ChartType = xlXYScatter
I want the 10,20,30 column to be the X axis values and not to be plotted.
Thanks.
I'm trying to plot a range of numbers:
Col G Col H
10 4.5
20 6
30 8.3
I'm selecting the data using
[G9].select
selection.End(xlDown).select
k = ("G9:" & "G" & Activecell.Row)
[H9].select
selection.End(xlDown).select
o = ("H9:" & "H" & Activecell.Row)
Range(k,0).select
'This will actually be viewed as Range("G9:G13","H9:H13") and I need it to be: Range("G9:G13, H9:H13) 'Notice the inner quotes are gone'
Activesheet.Shapes.AddChart.Select
ActiveChart.ChartType = xlXYScatter
I want the 10,20,30 column to be the X axis values and not to be plotted.
Thanks.