Macro to ask user to saveas worksheet

Caveman1964

Board Regular
Joined
Dec 14, 2017
Messages
121
Hi,
Looking for a macro to be able to save only one worksheet of the workbook.
For example, msgbox asks user to saveas H:\Jobs\ and then saves sheet 5 as an excel workbook itself.

and if possible, it uses the value of cell b2 as the name of file."H:\Jobs\B2 value
I tried but I have a mess.
Thanks ahead of time.
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
Code:
Sub Caveman()
Sheets("Sheet5").UsedRange.Copy
    Workbooks.Add
    ActiveSheet.Paste
    Application.CutCopyMode = False
    ActiveWorkbook.SaveAs Filename:="H:\jobs\" & Cells(2, 2), _
        FileFormat:=xlOpenXMLWorkbookMacroEnabled, CreateBackup:=False ' include extension like .xlsx in cell B2
           MsgBox "complete"
End Sub
 
Upvote 0
Awe Thank You Ravishankar!!!! I can get back on this project now. You are a lifesaver.
Much appreciated.
 
Upvote 0

Forum statistics

Threads
1,214,877
Messages
6,122,051
Members
449,064
Latest member
scottdog129

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