Split Excel Worksheets to Individual Files

Split Excel Worksheets to Individual Files


This video shows how to take an Excel workbook and break down the sheets within it to their own workbooks/individual Excel files.

Full detail on my blog here :
https://chrisbryson.wordpress.com/2013/05/21/split-excel-worksheets-to-individual-files/

VBA Script :

Sub Splitbook()
MyPath = ThisWorkbook.Path
For Each sht In ThisWorkbook.Sheets
sht.Copy
ActiveSheet.Cells.Copy
ActiveSheet.Cells.PasteSpecial Paste:=xlPasteValues
ActiveSheet.Cells.PasteSpecial Paste:=xlPasteFormats
ActiveWorkbook.SaveAs _
Filename:=MyPath & "\" & sht.Name & ".xls"
ActiveWorkbook.Close savechanges:=False
Next sht
End Sub

Video Length: 01:55
Uploaded By: Chris Bryson
View Count: 50,074

Related Videos
How to Split the Excel 2013 Worksheet into Windows For Dummies
How to Split the Excel 2013 Worksheet into Windows For Dummies

Video Length: 02:21
Uploaded By: fordummies
View Count: 30,379

How to split the worksheet window in Excel 2010
How to split the worksheet window in Excel 2010

Video Length: 02:40
Uploaded By: Maarten H
View Count: 8,490

How to split a workbook to separate Excel files?
How to split a workbook to separate Excel files?

Video Length: 02:08
Uploaded By: Techno Com (9/9/2015)
View Count: 7,115

How to split large table data into multiple Excel Sheets on a Excel File by using SSIS Package-P169
How to split large table data into multiple Excel Sheets on a Excel File by using SSIS Package-P169

Video Length: 35:53
Uploaded By: TechBrothersIT
View Count: 2,231

Copyright © 2026, Ivertech. All rights reserved.