Cách khôi phục sheet đã xóa trong excel | Split a Master Spreadsheet into Multiple Sheets with 1 click – VBA for Beginner

Cách khôi phục sheet đã xóa trong excel đang là chủ đề được rất nhiều người tìm kiếm. Vậy nên hôm nay Học Excel sẽ đưa đến các bạn chủ đề Cách khôi phục sheet đã xóa trong excel | Split a Master Spreadsheet into Multiple Sheets with 1 click – VBA for Beginner thông qua video và nội dung dưới đây:



Mua sản phẩm này trên Shopee: Mua Ngay

Mua sản phẩm này trên Lazada: Mua Ngay

Mua sản phẩm này trên Tiki: Mua Ngay

Want to learn how to design a salary structure? Check:
FREE template for my video: Excel for HR – Create Annual Employee Salary Increase Template from Scratch. You can download and try it out yourself here:

FREE actual workbook for my video “Split a Master Spreadsheet into Multiple Sheets with 1 click – VBA for Beginner”. You can download and try it out yourself here:

New course Launched! I created it to show you step-by-step how to design a salary structure with regression analysis in Excel. Check out the detail here:

Topic: Split a master tab into multiple sub tabs with 1 click
Scenario: You want to split the data on a master file into multiple small sub-tabs by a chosen criteria (eg. Department, Country, etc.)
Function: Macro for Copy sheet, AutoFilter, and Loop

Workbook download:
You can download and try it out yourself here –
I do have a course to provide additional info around this VBA function in case you are interested in learning more:

Related Video:
Excel Macro/VBA – Splitting a Master File
Troubleshooting when your code does not work:
Troubleshooting: Why my Split Macro does not work?
Save Sheets as Multiple Files with 1 click
Save Multiple Sheets as Separate PDF Files
Send or Draft Multiple Outlook Emails with Attachment

***Macro Code SEE COMMENT FOR IMPORTANT NOTICE***
Sub SplitandFilterSheet()
‘Step 1 – Name your ranges and Copy sheet
‘Step 2 – Filter by Department and delete rows not applicable
‘Step 3 – Loop until the end of the list
Dim Splitcode As Range
Sheets(“Master”).Select
Set Splitcode = Range(“Splitcode”)

For Each cell In Splitcode
Sheets(“Master”).Copy After:=Worksheets(Sheets.Count)
ActiveSheet.Name = cell.Value

With ActiveWorkbook.Sheets(cell.Value).Range(“MasterData”)
.AutoFilter Field:=6, Criteria1:=”NOT EQUAL TO” & cell.Value, Operator:=xlFilterValues
.Offset(1, 0).SpecialCells(xlCellTypeVisible).EntireRow.Delete
End With

ActiveSheet.AutoFilter.ShowAllData
Next cell
End Sub

******Follow-up Consulting Services******
If you have specific question regarding your issue, you can email me at the email here Note that there will be a fee of US$200 charged for solving your issue. The turnaround is within 24 hours. Any follow-up issue in 3 days will also be answered with no charge. Payment link:

******More Videos in Playlists******
Power BI for Beginners:
Power BI for Advanced Users:
Excel for HR
Excel for HR – Master Class
Excel Macro – Beginner
Excel Macro/VBA – Splitting a Master File
Excel Macro/VBA – Auto-hide Rows or Columns
Excel Charts Data Visualization
Excel Vlookup Function
Excel Pivot Table Function
Excel Array Function
Excel Index and Match Function
Excel Solver/Goal Seek Functions
Excel Cell Formatting Solutions
HR Analytics – Merit Matrix
HR Analytics – Salary Structure
Excel Tricks
Excel Troubleshooting
Fun HR Topics

For more successful stories, view at:

#ExcelforHR#HRAnalytics#Excel#HR

Tag: Cách khôi phục sheet đã xóa trong excel, Split master tab menjadi beberapa sub tab, Split a Master Spreadsheet into Multiple Sheets, Split a master tab into multiple sub tabs, split master sheet, split spreadsheet in excel with macro, how to use macro to divide sheet, split data into multiple worksheets, split excel file into multiple, split excel sheet into multiple sheets based on column,एक मास्टर टैब को कई उप टैब में विभाजित करें, how to use macro to break sheet, how to split one excel sheet into multiple files

Cảm ơn các bạn đã theo dõi nội dung Cách khôi phục sheet đã xóa trong excel | Split a Master Spreadsheet into Multiple Sheets with 1 click – VBA for Beginner. Học Excel hy vọng đã giúp được bạn giải đáp được vấn đề, mọi thắc mắc hay comment xuống phía dưới.

Xem thêm: https://taichinh4u.net/category/chia-se

Hãy bình luận đầu tiên

Để lại một phản hồi

Thư điện tử của bạn sẽ không được hiện thị công khai.


*