genuineblonde
Technical User
I have a worksheet file with 68 sheets. Can anyone suggest an automated way to write each worksheet to a separate file named the same as the worksheet.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub SaveEachSheet()
For Each Worksheet In Worksheets
Worksheet.Copy
With ActiveWorkbook
.SaveAs ActiveSheet.Name & ".xls"
.Close
End With
Next
End Sub