View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Bob Phillips[_6_] Bob Phillips[_6_] is offline
external usenet poster
 
Posts: 11,272
Default Define name automatically


For i = 1 To 234
Range("A1").Resize(,4).Name = "row" & i
Next i

--

HTH

RP
(remove nothere from the email address if mailing direct)


"arne" wrote in message
...
In selected range, for example a1:d234 I need to
give a1:d1 the name row1,a2:d2 the name row2 and so on..
Any suggestions?
Using excel 2000.
Arne