VBA Save active sheet as new Workbook in specific Location Values only

AdyStewart

New Member
Joined
Jun 29, 2019
Messages
6
Hello

i need a macro that will Save the current active sheet as a workbook

Any help would be greatly appreciated

Requirements:
Save active sheet as a workbook Values only
Save to specific location E.G. "C:\Users\Username\Desktop"
Save the file name as "text" & " " Active sheet name
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Hello

i need a macro that will Save the current active sheet as a workbook

Any help would be greatly appreciated

Requirements:
Save active sheet as a workbook Values only
Save to specific location E.G. "C:\Users\Username\Desktop"
Save the file name as "text" & " " Active sheet name

Code:
Sub Save_Sheet()

Dim SD As Variant, WB As Workbook, ASH As Worksheet

Set ASH = ActiveSheet

SD = ASH.UsedRange.Value

Set WB = Workbooks.Add

With WB

    .Worksheets(1).Range("A1").Resize(UBound(SD, 1), UBound(SD, 2)).Value2 = SD
    .SaveAs _
        Filename:=Environ("USERPROFILE") & "\Desktop\text " & ASH.Name & ".xlsb", _
        FileFormat:=xlExcel12 'SAVES in .XLSB Format
    .Close
    
End With

End Sub
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,430
Messages
6,119,443
Members
448,898
Latest member
drewmorgan128

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