View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
sylink[_3_] sylink[_3_] is offline
external usenet poster
 
Posts: 17
Default 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.