Autogenerate worksheets from a list of names... Adding names?
Closed
Juliza
-
Mar 29, 2015 at 03:06 PM
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022 - Mar 30, 2015 at 12:01 PM
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022 - Mar 30, 2015 at 12:01 PM
Related:
- Autogenerate worksheets from a list of names... Adding names?
- My contacts list names - Guide
- Ideogram ai names - Guide
- Wow monk names - Guide
- Laptop keyboard symbol names - Guide
- How to count names in excel - Guide
1 response
TrowaD
Posts
2921
Registration date
Sunday September 12, 2010
Status
Moderator
Last seen
December 27, 2022
555
Mar 30, 2015 at 12:01 PM
Mar 30, 2015 at 12:01 PM
Hi Juliza,
Whenever a change is made in column A, then that value will be used to name the new sheet.
To implement the following code, right-click your sheet (with the list of sheet names) and select view code, then paste the code below:
Let us know if this works for you and/or if anything comes up.
Best regards,
Trowa
Whenever a change is made in column A, then that value will be used to name the new sheet.
To implement the following code, right-click your sheet (with the list of sheet names) and select view code, then paste the code below:
Private Sub Worksheet_Change(ByVal Target As Range) If Intersect(Target, Range("A:A")) Is Nothing Then Exit Sub Sheets(2).Copy After:=Sheets(Sheets.Count) Sheets(Sheets.Count).Name = Target.Value End Sub
Let us know if this works for you and/or if anything comes up.
Best regards,
Trowa