ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Range Reference Problem (https://www.excelbanter.com/excel-programming/445065-range-reference-problem.html)

sylink[_3_]

Range Reference Problem
 
I need to convert this range reference to a variable one using "Z" for
only "D4005". "B2" is static and therefore need not be changed.


Dim Z As Integer

Range( "B2:D4005")

I attempted something like this without success:

Range("B2:D & Z & ")


Thank you for your anticipated response.

Claus Busch

Range Reference Problem
 
Hi,

Am Tue, 18 Oct 2011 10:49:37 -0700 (PDT) schrieb sylink:

Range("B2:D & Z & ")


try:
Range("B2:D" & Z)

Regards
Claus Busch
--
Win XP PRof SP2 / Vista Ultimate SP2
Office 2003 SP2 /2007 Ultimate SP2

Ron Rosenfeld[_2_]

Range Reference Problem
 
On Tue, 18 Oct 2011 10:49:37 -0700 (PDT), sylink wrote:

I need to convert this range reference to a variable one using "Z" for
only "D4005". "B2" is static and therefore need not be changed.


Dim Z As Integer

Range( "B2:D4005")

I attempted something like this without success:

Range("B2:D & Z & ")


Thank you for your anticipated response.


Not tested:

Try: Range("B2","D" & Z)

or

Range("B2:D" & Z)

Andrew[_56_]

Range Reference Problem
 
On Oct 18, 12:21*pm, Ron Rosenfeld wrote:
On Tue, 18 Oct 2011 10:49:37 -0700 (PDT), sylink wrote:
I need to convert this range reference to a variable one using "Z" for
only "D4005". "B2" is static and therefore need not be changed.


Dim Z As Integer


Range( "B2:D4005")


I attempted something like this without success:


Range("B2:D & Z & ")


Thank you for your anticipated response.


Not tested:

Try: * Range("B2","D" & Z)

or

* * Range("B2:D" & Z)


Try this:
Range(cells(2,2),cells(4,Z))


All times are GMT +1. The time now is 05:26 AM.

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