Mike,
Probably just bad explaining on my part! I have changed how I might
approach this and need your advice on the following:
I have the following code to select sheets:
Sheets(Array("Sheet 1", "Sheet 2", "Sheet 3", "Sheet 4", "Sheet 5",
"Sheet 6", _
"Sheet 7", "Sheet 8", "Sheet 9", "Sheet 10", "Sheet 11", "Sheet 12",
"Sheet 13", _
"Sheet 14", "Sheet 15", "Sheet 16", "Sheet 17", "Sheet 18", "Sheet
19", "Sheet 20", _
"Sheet 21")).Select
Sheets("Sheet 1").Activate
I have then modified another macro that was suggested by someone else in a
different thread (can't find it for reference), to:
Sub ...
dim wks as worksheet
for each wks in activewindow.selectedsheets
wks.name=wks.range("C4").value
next wks
End Sub
Where C4 is the person's name.
This seems to work for the first instance, but then the sheet references
don't update themselves.
I also have another tab for each person's which I need to rename aswell, but
not sure how!
Have you got any ideas as to where I can go from here?
Thanks for your help.

Signature
J
> Hi,
>
[quoted text clipped - 48 lines]
> >
> > James