I got already the code kindly help me modify to determine if the value already exist as worksheet name
Sub createSheet()
Dim lastrow As Long, LastCol As Integer, i As Long, iStart As Long, iEnd As Long
Dim ws As Worksheet
Application.ScreenUpdating = False
For Each ws In ThisWorkbook.Worksheets
With ActiveSheet
Application.DisplayAlerts = False
' For Each ws In ThisWorkbook.Worksheets
' If ws.Name <> .Name Then ws.Delete
' Next ws
Application.DisplayAlerts = True
lastrow = .Cells(Rows.Count, "A").End(xlUp).Row
LastCol = .Cells(1, Columns.Count).End(xlToLeft).Column
'.Range(.Cells(2, 1), Cells(lastrow, LastCol)).Sort Key1:=Range("D3"), Order1:=xlAscending, _
' Header:=xlGuess, OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom
iStart = 9
For i = 9 To lastrow
If ws.Name = "v" & .Range("A" & i).Value Then
i = i + 1
iStart = iStart + 1
ElseIf .Range("A" & i).Value <> .Range("A" & i + 1) Then
iEnd = i
Sheets.Add after:=Sheets(Sheets.Count)
Set ws = ActiveSheet
On Error Resume Next
ws.Name = "v" & .Range("A" & iStart).Value
On Error GoTo 0
iStart = iEnd + 1
End If
Next i
End With
Next ws
End Sub
Bookmarks