ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   create a dynamic Range() (https://www.excelbanter.com/excel-programming/297115-create-dynamic-range.html)

rbaldwin[_2_]

create a dynamic Range()
 
i need to pass to a Sub a parameter TargetRange As Range

i want my macro to pick up the target range location from a cell on on
of the sheets.

for example:

in cell a1 i have the value "B10"

i need to pass the value in a1 as a Range to my Sub.

i tried

Dim TR
TR
Range(Worksheets("DataFeeds1").Range(Worksheets("D ataFeeds1").Range("A1")).Value)

Sub mysub (Target As Range)
.....
end sub

But inside mySub Target is A1!!
:confused:

Admittedly i'm somewhat new to this.
Your Help is sincerely appreciated

--
Message posted from http://www.ExcelForum.com


steve

create a dynamic Range()
 
change your
dim TR
to
Dim TR as range


-----Original Message-----
i need to pass to a Sub a parameter TargetRange As Range

i want my macro to pick up the target range location

from a cell on one
of the sheets.

for example:

in cell a1 i have the value "B10"

i need to pass the value in a1 as a Range to my Sub.

i tried

Dim TR
TR =
Range(Worksheets("DataFeeds1").Range(Worksheets

("DataFeeds1").Range("A1")).Value)

Sub mysub (Target As Range)
.....
end sub

But inside mySub Target is A1!!
:confused:

Admittedly i'm somewhat new to this.
Your Help is sincerely appreciated.


---
Message posted from http://www.ExcelForum.com/

.


JE McGimpsey

create a dynamic Range()
 
If I understood what you're trying to do:

With Worksheets("DataFeeds1")
mysub .Range(.Range("A1").Value)
End With


In article ,
rbaldwin wrote:

i need to pass to a Sub a parameter TargetRange As Range

i want my macro to pick up the target range location from a cell on one
of the sheets.

for example:

in cell a1 i have the value "B10"

i need to pass the value in a1 as a Range to my Sub.

i tried

Dim TR
TR =
Range(Worksheets("DataFeeds1").Range(Worksheets("D ataFeeds1").Range("A1")).Val
ue)

Sub mysub (Target As Range)
....
end sub

But inside mySub Target is A1!!
:confused:

Admittedly i'm somewhat new to this.
Your Help is sincerely appreciated.


---
Message posted from http://www.ExcelForum.com/


Bob Phillips[_6_]

create a dynamic Range()
 
and use Set for the assignment

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"steve" wrote in message
...
change your
dim TR
to
Dim TR as range


-----Original Message-----
i need to pass to a Sub a parameter TargetRange As Range

i want my macro to pick up the target range location

from a cell on one
of the sheets.

for example:

in cell a1 i have the value "B10"

i need to pass the value in a1 as a Range to my Sub.

i tried

Dim TR
TR =
Range(Worksheets("DataFeeds1").Range(Worksheets

("DataFeeds1").Range("A1")).Value)

Sub mysub (Target As Range)
.....
end sub

But inside mySub Target is A1!!
:confused:

Admittedly i'm somewhat new to this.
Your Help is sincerely appreciated.


---
Message posted from http://www.ExcelForum.com/

.





All times are GMT +1. The time now is 07:28 AM.

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