Created
July 21, 2017 10:12
-
-
Save ndthanh/566b53e05f19fa5933b41e429af2b77f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sub Splitbook() | |
'Updateby20140612 | |
Dim xPath As String | |
xPath = Application.ActiveWorkbook.Path | |
Application.ScreenUpdating = False | |
Application.DisplayAlerts = False | |
For Each xWs In ThisWorkbook.Sheets | |
xWs.Copy | |
Application.ActiveWorkbook.SaveAs Filename:=xPath & "\" & xWs.Name & ".xls" | |
Application.ActiveWorkbook.Close False | |
Next | |
Application.DisplayAlerts = True | |
Application.ScreenUpdating = True | |
End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment