Table of Contents
This practical guide explains how to Split Sheet Into Multiple Separate Excel Files through clear, ordered steps. It also covers useful settings, common mistakes, and checks that can improve the final result.
Having multiple sheets will increase the file size, especially when you add add-ins or add VBA macro code in Excel. Therefore, splitting sheets into multiple files is a reasonable solution in case users only want to get data in a certain sheet.

Split sheet into separate files
How to Split Sheet Into Multiple Excel Files
Step 1: First, you need to check if the Excel you are using has the Developer tab. If not, you can display The Developer tab According to the instructions here.
Next, open the Excel file with multiple sheets. Suppose the image below shows you have an Excel file with 5 various sheets.

Step 2: Press the key combination ALT + F11 To open the VBA program in Excel, or click on the Developer Tab -> then select Visual Basic .

Step 3: Then, the VBA interface appears -> click on the Insert Tab -> then select the Module Section to open the VBA code entry interface.

Next, copy the code below into the Module Interface above.
Sub Splitbook()
'Updatedby20140612
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

Step 4: Click Run On the toolbar to run or press F5 On the keyboard to run the code you just added above.

After the code execution is complete, you open the folder containing the original Excel file -> here, you will see each new file separated from the sheets will be located here. If your Excel file uses calculation formulas, all calculation formulas and data in each sheet will still be guaranteed and kept intact.

You can open the split file to check. If there is a notification as shown below -> click Yes To agree and the file will be opened normally.

So that's the end of the Free Download tutorial on splitting sheets into multiple Excel files. The steps for you to follow are really simple, right? The hardest part is to have the code to use, you can copy the code that TipsMake has created, and you simply copy them into the Module and run them.
In addition, you can add more Sheets in Excel or you can even Merge multiple Excel files into 1 File In Excel quite with minimal effort! All instructions are available on TipsMake, please refer to the implementation and follow it. Good luck!
FAQ
How do I Split Sheet Into Multiple Separate Excel Files?
Follow the steps in this guide in order, verify each setting before continuing, and check the result after every major change.
What should I prepare before I Split Sheet Into Multiple Separate Excel Files?
Confirm compatibility, install current updates, save important work, and back up data before changing system or application settings.
What can I do if split Sheet Into Multiple Separate Excel Files does not work?
Review permissions and requirements, restart the relevant device or app, repeat the steps carefully, and use official support resources when the issue continues.
Reader Comments 0
Sign in with email or Google to join the discussion.