VBA Macro To Add, Delete, Rename Sheets In a Active WorkBook
Sub AddDelRenam()
Sub AddDelRenam()
Dim x as Integer, y as Integer
x = InputBox("Enter The Sheet Name To Add :")
Sheets.ADD.Name = x
y = InputBox("Enter The Sheet Name To Delete :")
Sheets(x).Delete
A = InputBox("Enter The Sheet Name To Rename :")
B = InputBox("Enter The New Name To Sheet :" & A)
Sheets(A).Name = B
End Sub
No comments:
Post a Comment
Hi User, Thank You for visiting My Blog. Please post your genuine Feedback or comments only related to this Blog Posts. Please do not post any Spam comments or Advertising kind of comments which will be Ignored.