Dear
now i update the vba please check
Sub CreateNewSheet()
Dim str As String
Dim SummarySheet As Worksheet
Dim NewSheet As Worksheet
Dim SampleSheet As Worksheet
Dim ws As Worksheet
Dim sheetExists As Boolean
Dim nextRow As Long
Dim cell As Range
Dim tableRange As Range
Dim SummaryTable As ListObject
' Prompt for the new sheet name
str = InputBox("Enter New Sheet Name:", "Create New Sheet")
If str = "" Then
MsgBox "You didn't enter a sheet name.", , "Error"
Exit Sub
End If
' Check if the sheet already exists
sheetExists = False
For Each ws In ThisWorkbook.Worksheets
If ws.Name = str Then
sheetExists = True
Exit For
End If
Next ws
If sheetExists Then
MsgBox "Sheet '" & str & "' already exists.", vbExclamation
Exit Sub
End If
With ThisWorkbook
' Verify "Sample" sheet exists
On Error Resume Next
Set SampleSheet = .Worksheets("Sample")
On Error GoTo 0
If SampleSheet Is Nothing Then
MsgBox "The 'Sample' sheet was not found.", vbExclamation
Exit Sub
End If
' Copy the Sample sheet and rename it
SampleSheet.Copy after:=.Worksheets(.Worksheets.Count)
Set NewSheet = .Sheets(SampleSheet.Name & " (2)") ' Newly created sheet is named based on Sample
NewSheet.Name = str ' Rename the copied sheet to the user-specified name
NewSheet.Visible = xlSheetVisible
' Move the Sample sheet if needed
If .Sheets("Sample").Index <> 2 Then .Sheets("Sample").Move after:=.Sheets("Summary")
' Set reference to Summary sheet
Set SummarySheet = .Sheets("Summary")
' Find the next available row in the Summary sheet (for new sheet name and formulas)
nextRow = SummarySheet.Cells(SummarySheet.Rows.Count, "A").End(xlUp).Row + 1
' Ensure we start from row 5 if the next row is above 5
If nextRow < 5 Then nextRow = 5
' Add the new sheet name in the new row (Column A) with hyperlink
SummarySheet.Cells(nextRow, 1).Formula = "=HYPERLINK(""#'" & str & "'!A1"",""" & str & """)"
' Copy formulas from the previous row (Row 4) and paste them into the new row
SummarySheet.Range("B4:W4").Copy
SummarySheet.Range("B" & nextRow & ":W" & nextRow).PasteSpecial Paste:=xlPasteFormulas
' Update the formulas to reference the new sheet
For Each cell In SummarySheet.Range("B" & nextRow & ":W" & nextRow)
cell.Formula = Replace(cell.Formula, "'" & SummarySheet.Cells(4, 1).Value & "'", "'" & str & "'")
Next cell
' Define the range for the table starting from row 5 and including all rows up to the new one
Set tableRange = SummarySheet.Range("A5:W" & nextRow)
' Check if there's an existing table
On Error Resume Next
Set SummaryTable = SummarySheet.ListObjects(1) ' Assuming there's only one table
On Error GoTo 0
' If no table exists, create one
If SummaryTable Is Nothing Then
' Create a new table starting from row 5, including the header row and new row
Set SummaryTable = SummarySheet.ListObjects.Add(xlSrcRange, tableRange, , xlYes)
SummaryTable.Name = "SummaryTable"
Else
' If a table exists, resize it to include the new row
SummaryTable.Resize SummarySheet.Range("A5:W" & nextRow)
End If
Application.CutCopyMode = False
' Activate the Summary sheet
SummarySheet.Activate
End With
End Sub
Bookmarks