ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Combining Two Ranges (https://www.excelbanter.com/excel-programming/284462-combining-two-ranges.html)

SoCalExcel

Combining Two Ranges
 
I'm writing code to update a command very similar to

ActiveChart.SetSourceData Source:=Sheets("Graph
Data").Range("A1:A21,G1:M21"), PlotBy:=xlRows

except I need to do it using the 'Cells()' format. For
example, instead of using

Range("A1:A21,G1:M21")

since I'm using variables to reference the range, I
believe I need to use the 'Cells()' format instead of
the "A1:.." format. My attempts have looked something
like:

Range((Cells(1, 1), Cells(21, 1), (Cells(1, 7), Cells(10,
7))

This isn't working. Any help is greatly appreciated.

Thanks.

Tom Ogilvy

Combining Two Ranges
 
Union(Range(Cells(1, 1), Cells(21, 1)), Range(Cells(1, 7), Cells(10,7)))

--
Regards,
Tom Ogilvy




"SoCalExcel" wrote in message
...
I'm writing code to update a command very similar to

ActiveChart.SetSourceData Source:=Sheets("Graph
Data").Range("A1:A21,G1:M21"), PlotBy:=xlRows

except I need to do it using the 'Cells()' format. For
example, instead of using

Range("A1:A21,G1:M21")

since I'm using variables to reference the range, I
believe I need to use the 'Cells()' format instead of
the "A1:.." format. My attempts have looked something
like:

Range((Cells(1, 1), Cells(21, 1), (Cells(1, 7), Cells(10,
7))

This isn't working. Any help is greatly appreciated.

Thanks.




No Name

Still not working
 
I've updated the code to read:

ActiveChart.SetSourceData Source:=Sheets("Graph
Data").Union(Range(Cells(1, 1), Cells(PriceBandCounter,
1)), Range(Cells(1, 7), Cells(PriceBandCounter, 7))),
PlotBy:=xlRows

This is returning a Run Time Error 438, Object doesn't
support this property or method...


-----Original Message-----
Union(Range(Cells(1, 1), Cells(21, 1)), Range(Cells(1,

7), Cells(10,7)))

--
Regards,
Tom Ogilvy




"SoCalExcel" wrote

in message
...
I'm writing code to update a command very similar to

ActiveChart.SetSourceData Source:=Sheets("Graph
Data").Range("A1:A21,G1:M21"), PlotBy:=xlRows

except I need to do it using the 'Cells()' format. For
example, instead of using

Range("A1:A21,G1:M21")

since I'm using variables to reference the range, I
believe I need to use the 'Cells()' format instead of
the "A1:.." format. My attempts have looked something
like:

Range((Cells(1, 1), Cells(21, 1), (Cells(1, 7), Cells

(10,
7))

This isn't working. Any help is greatly appreciated.

Thanks.



.


Tom Ogilvy

Still not working
 
Dim rng as Range
PriceBandCounter = 20

with Worksheets("Graph Data")
set rng = Union(.Range(.Cells(1, 1), .Cells(PriceBandCounter,1)), _
.Range(.Cells(1, 7), .Cells(PriceBandCounter, 7)))
End With

ActiveChart.SetSourceData Source:=rng, _
PlotBy:=xlRows

--
Regards,
Tom Ogilvy

wrote in message
...
I've updated the code to read:

ActiveChart.SetSourceData Source:=Sheets("Graph
Data").Union(Range(Cells(1, 1), Cells(PriceBandCounter,
1)), Range(Cells(1, 7), Cells(PriceBandCounter, 7))),
PlotBy:=xlRows

This is returning a Run Time Error 438, Object doesn't
support this property or method...


-----Original Message-----
Union(Range(Cells(1, 1), Cells(21, 1)), Range(Cells(1,

7), Cells(10,7)))

--
Regards,
Tom Ogilvy




"SoCalExcel" wrote

in message
...
I'm writing code to update a command very similar to

ActiveChart.SetSourceData Source:=Sheets("Graph
Data").Range("A1:A21,G1:M21"), PlotBy:=xlRows

except I need to do it using the 'Cells()' format. For
example, instead of using

Range("A1:A21,G1:M21")

since I'm using variables to reference the range, I
believe I need to use the 'Cells()' format instead of
the "A1:.." format. My attempts have looked something
like:

Range((Cells(1, 1), Cells(21, 1), (Cells(1, 7), Cells

(10,
7))

This isn't working. Any help is greatly appreciated.

Thanks.



.




No Name

Thanks!
 

-----Original Message-----
Dim rng as Range
PriceBandCounter = 20

with Worksheets("Graph Data")
set rng = Union(.Range(.Cells(1, 1), .Cells

(PriceBandCounter,1)), _
.Range(.Cells(1, 7), .Cells(PriceBandCounter, 7)))
End With

ActiveChart.SetSourceData Source:=rng, _
PlotBy:=xlRows

--
Regards,
Tom Ogilvy

wrote in message
...
I've updated the code to read:

ActiveChart.SetSourceData Source:=Sheets("Graph
Data").Union(Range(Cells(1, 1), Cells(PriceBandCounter,
1)), Range(Cells(1, 7), Cells(PriceBandCounter, 7))),
PlotBy:=xlRows

This is returning a Run Time Error 438, Object doesn't
support this property or method...


-----Original Message-----
Union(Range(Cells(1, 1), Cells(21, 1)), Range(Cells(1,

7), Cells(10,7)))

--
Regards,
Tom Ogilvy




"SoCalExcel"

wrote
in message
...
I'm writing code to update a command very similar to

ActiveChart.SetSourceData Source:=Sheets("Graph
Data").Range("A1:A21,G1:M21"), PlotBy:=xlRows

except I need to do it using the 'Cells()' format.

For
example, instead of using

Range("A1:A21,G1:M21")

since I'm using variables to reference the range, I
believe I need to use the 'Cells()' format instead

of
the "A1:.." format. My attempts have looked

something
like:

Range((Cells(1, 1), Cells(21, 1), (Cells(1, 7),

Cells
(10,
7))

This isn't working. Any help is greatly

appreciated.

Thanks.


.



.



All times are GMT +1. The time now is 06:57 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com