How to Split workbook into sheets in Excel

How to Split workbook into sheets in Excel

SHARE:

How to Split workbook into sheets in Excel Splitting many workbooks in an excel sheet to a different worksheet is a most tedious job.

How to Split workbook into sheets in Excel

Splitting many workbooks in an excel sheet to a different worksheet is a most tedious job. if we want to split the sheet1, sheet2, sheet3 in different workbook then we have to manually open a new workbook and move and copy worksheet.
We have one VBA code which will do all the work for you with a click and create a workbook from many numbers of worksheets. it will create Sheet1, sheet2, sheet3 workbook.
Below is given VBA code
[Sub breakworkbookintosheets()
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 & ".xlsx"
ActiveWorkbook.Close savechanges:=False
Next sht
End Sub]
For this VBA code, open excel file go to developer tab ( if no developer tab is shown then go to excel option from file tab then go to the popular tab and click on checkbox show developer tab in ribbon)
in an alternative way press Alt+F11 >> then insert a new Module then copy above code and paste here. then run this code.
Download The Code
worksheet split will be done.

COMMENTS

Name

269su,1,80-c,3,80CCD,2,aadhaar,6,accounts,10,advance-ruling,4,appeal,2,audit,8,bank-audit,1,banks,3,bare-act,3,bonds,1,budget,30,budget-2019,3,budget-2020,2,budget-2021,15,budget-2022,4,budget-2023,7,calculator,1,capital-gains,2,case-laws,1,cash,1,cbdt,2,chartered-accountants,2,co-operative-housing-society,1,company-audit,1,cop,1,covid-19,4,deduction,8,depreciation,1,dgft,1,donation,1,download,26,e-invoicing,2,e-way-bill,1,earning-tips,6,ebook,1,epf,1,equilisation-levy,1,excel,11,excel-2-tally,3,exempt-income,1,gold,1,gst,44,gst-audit,1,gst-council,13,gstp,2,icai,3,income-tax,79,income-tax-news,27,info,13,investments,2,itc,2,itr-filing,3,leave-encashment,1,letter,1,list,3,mca,1,mf,3,mp,3,ngo,8,notification,5,NPS,1,pan,6,roc,1,rules,1,saving-scheme,3,script,2,sft,1,share-market,1,society,7,stock-market,1,supreme-court,1,tally,16,tax-audit,2,tcs,6,tdl,2,tds,18,tds-rate-chart,1,tips,15,trust,2,utility,7,
ltr
item
Saral Tax India | सरल टैक्स इंडिया: How to Split workbook into sheets in Excel
How to Split workbook into sheets in Excel
How to Split workbook into sheets in Excel Splitting many workbooks in an excel sheet to a different worksheet is a most tedious job.
Saral Tax India | सरल टैक्स इंडिया
https://www.saraltaxindia.com/2019/08/split-workbook-into-sheets.html
https://www.saraltaxindia.com/
https://www.saraltaxindia.com/
https://www.saraltaxindia.com/2019/08/split-workbook-into-sheets.html
true
2873352319085116735
UTF-8
Loaded All Posts Not found any posts VIEW ALL Read More Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS PREMIUM CONTENT IS LOCKED STEP 1: Share. STEP 2: Click the link you shared to unlock Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy