View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Rod Taylor Rod Taylor is offline
external usenet poster
 
Posts: 11
Default Range as varable

I can take a named range such as DAT1
and change it to a variable then use it to say select
i.e. Set ab = Range("DAT9")
Set cd = Range("INT5")
cd.Select
but how do I use the variables in the next example

Set isect = Application.Intersect(Range("DAT5"), Range("INT5"))
I cant seem to figure this out
thanks