The Excel VBA macro below will create a new Excel Worksheet called ‘RawData’ or we can use msgbox to ask for the Worksheet name if needed.
If there is already a Worksheet called RawData, user will be ask whether they want to use the old Worksheet and cancel new Worksheet creation, or delete the old Worksheet and continue creating a new blank Worksheet.
Sub CreateNewWorksheet()
Dim oSheet As Worksheet, vRet As Variant
On Error GoTo errHandler
'creating a new excel worksheet called RawData
Set oSheet = Worksheets.Add
With oSheet
.Name = "RawData"
.<a title="See also Number of Cells/Rows/Columns With Formula" href="http://office-2all.blogspot.in/">Cells</a>(1.1).Select
.Activate
End With
Exit Sub
errHandler:
'if error due to duplicate worksheet detected
If Err.Number = 1004 Then
'display an options to user
vRet = MsgBox("Worksheet called 'RawData' is already exist, " & _
"click yes to continue creating new Worksheet and delete the old one, " & _
"or click no to go to the old worksheet.", _
vbOKCancel, "Duplicate Worksheet")
If vRet = vbOK Then
'delete the old worksheet
Application.DisplayAlerts = False
Worksheets("RawData").Delete
Application.DisplayAlerts = True
'rename and activate the new worksheet
With oSheet
.Name = "RawData"
.Cells(1.1).Select
.Activate
End With
Else
'cancel the operation, delete the new worksheet
Application.DisplayAlerts = False
oSheet.Delete
Application.DisplayAlerts = True
'activate the old worksheet
Worksheets("RawData").Activate
End If
End If
End Sub
If there is already a Worksheet called RawData, user will be ask whether they want to use the old Worksheet and cancel new Worksheet creation, or delete the old Worksheet and continue creating a new blank Worksheet.
Sub CreateNewWorksheet()
Dim oSheet As Worksheet, vRet As Variant
On Error GoTo errHandler
'creating a new excel worksheet called RawData
Set oSheet = Worksheets.Add
With oSheet
.Name = "RawData"
.<a title="See also Number of Cells/Rows/Columns With Formula" href="http://office-2all.blogspot.in/">Cells</a>(1.1).Select
.Activate
End With
Exit Sub
errHandler:
'if error due to duplicate worksheet detected
If Err.Number = 1004 Then
'display an options to user
vRet = MsgBox("Worksheet called 'RawData' is already exist, " & _
"click yes to continue creating new Worksheet and delete the old one, " & _
"or click no to go to the old worksheet.", _
vbOKCancel, "Duplicate Worksheet")
If vRet = vbOK Then
'delete the old worksheet
Application.DisplayAlerts = False
Worksheets("RawData").Delete
Application.DisplayAlerts = True
'rename and activate the new worksheet
With oSheet
.Name = "RawData"
.Cells(1.1).Select
.Activate
End With
Else
'cancel the operation, delete the new worksheet
Application.DisplayAlerts = False
oSheet.Delete
Application.DisplayAlerts = True
'activate the old worksheet
Worksheets("RawData").Activate
End If
End If
End Sub
No comments:
Post a Comment