Phil Smith
Active Member
- Joined
- Aug 13, 2004
- Messages
- 285
- Office Version
- 365
- Platform
- Mobile
Hi People of the Forum,
First of all, this is more of a "I wonder if..." question rather than a I REALLY need this to be solved situation.
Anyway, I have a table in which I need to name each row as a range, not a problem, I use:
Is it possible to name each row in one batch? I was probably thinking along the lines of SpecialCells to act on all cells matching a given criteria (I think) and just wondered if it was possible to create/name multiple ranges in one go.
Probably not, but if you don't ask...
Thanks!
First of all, this is more of a "I wonder if..." question rather than a I REALLY need this to be solved situation.
Anyway, I have a table in which I need to name each row as a range, not a problem, I use:
Code:
For r= 2 to 71
.Cells(r,2).Resize(1,28).Name="Week"&r-1
Next r
Probably not, but if you don't ask...
Thanks!