View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Chip Pearson Chip Pearson is offline
external usenet poster
 
Posts: 7,247
Default range as variable

In its simplest form, you could do something like

Dim Addr As String
Addr = "C33"
Range(Addr).Select


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
(email address is on the web site)


"Sparky AKA_Sparkticus" wrote in message
k...
Range("C33").Select

is there a way to may range a variable ?

Sparky