Combined two codes in one

Jeffreyxx01

Board Regular
Joined
Oct 23, 2017
Messages
156
Hello everyone,

I would like to create a macro that copy my "worker" tab and pop a message box that will change the name of the new tab for example: "worker" >> "XXX"

Also I want the macro to clear the contents of the cells I would allocate for my needs for example:

A1 A2 A3 >>> Those are just example,

Can someone help?

Thanks


Code:
[/COLOR]Private Sub ResetForm_Click()
'Deletes all user fields


Dim ws As Worksheet
With Worksheets("Worker")
  .Range("D4:F4").ClearContents
  .Range("D7:F10").ClearContents
  .Range("D22:F25").ClearContents
  .Range("D30:F31").ClearContents
  .Range("D35:F35").ClearContents
  .Range("D38:F38").ClearContents
  .Range("D43:F44").ClearContents
End With


End Sub


Sub AddSheets()
Dim NewName As String
Another:
OneMore = False
NewName = InputBox("New Name?")
Sheets.Add
ActiveSheet.Name = NewName
If MsgBox("Do you want to Add another Sheet?", vbYesNo) = 6 Then GoTo Another
End Sub


[COLOR=#333333]
[/COLOR]

 
Last edited:

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"

Forum statistics

Threads
1,224,824
Messages
6,181,187
Members
453,020
Latest member
Mohamed Magdi Tawfiq Emam

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top