Looking to use a Range from sheet "Employee List" ("A2:A33") and name only sheets with the beginning codename "FTE*".
[TABLE="width: 500"]
<tbody>[TR]
[TD]Codename[/TD]
[TD]Cell[/TD]
[TD]Range[/TD]
[TD]Result[/TD]
[/TR]
[TR]
[TD]FTE01 (FTE01)[/TD]
[TD]A2[/TD]
[TD]Todd[/TD]
[TD]FTE01 (Todd)[/TD]
[/TR]
[TR]
[TD]FTE02 (FTE02)[/TD]
[TD]A3[/TD]
[TD]Steve[/TD]
[TD]FTE02 (Steve)[/TD]
[/TR]
[TR]
[TD]Table (Table)[/TD]
[TD][/TD]
[TD][/TD]
[TD]Not Renamed[/TD]
[/TR]
[TR]
[TD]FTE03 (FTE03)[/TD]
[TD]A4[/TD]
[TD]Mark[/TD]
[TD]FTE03 (Mark)[/TD]
[/TR]
[TR]
[TD]Report (Report)[/TD]
[TD][/TD]
[TD][/TD]
[TD]Not Renamed[/TD]
[/TR]
</tbody>[/TABLE]
I know I need to use "For Each in range" and "if FTESheet.Codename like "FTE*" Then". But not sure how to loop through the Range and the Sheets at the same time.
[TABLE="width: 500"]
<tbody>[TR]
[TD]Codename[/TD]
[TD]Cell[/TD]
[TD]Range[/TD]
[TD]Result[/TD]
[/TR]
[TR]
[TD]FTE01 (FTE01)[/TD]
[TD]A2[/TD]
[TD]Todd[/TD]
[TD]FTE01 (Todd)[/TD]
[/TR]
[TR]
[TD]FTE02 (FTE02)[/TD]
[TD]A3[/TD]
[TD]Steve[/TD]
[TD]FTE02 (Steve)[/TD]
[/TR]
[TR]
[TD]Table (Table)[/TD]
[TD][/TD]
[TD][/TD]
[TD]Not Renamed[/TD]
[/TR]
[TR]
[TD]FTE03 (FTE03)[/TD]
[TD]A4[/TD]
[TD]Mark[/TD]
[TD]FTE03 (Mark)[/TD]
[/TR]
[TR]
[TD]Report (Report)[/TD]
[TD][/TD]
[TD][/TD]
[TD]Not Renamed[/TD]
[/TR]
</tbody>[/TABLE]
I know I need to use "For Each in range" and "if FTESheet.Codename like "FTE*" Then". But not sure how to loop through the Range and the Sheets at the same time.