Hi All
I have a workbook and I want to save each worksheet as a seperate workbook in a specific network folder. I have written this piece of code, but it defaults to My Documents as expected. How can I get it to save to a network folder without changing the user default option?
Sub Saver()
Dim wb As Workbook
Dim ws As Worksheet
Dim wsName As String
Application.ScreenUpdating = False
For Each ws In ThisWorkbook.Worksheets
ws.Copy
Set wb = ActiveWorkbook
With wb
.SaveAs FileName:=ActiveSheet.Name
End With
Next ws
End Sub
Jerry