cara memecah/ export sheet excel menjadi banyak file

caranya hanya beberapa langkah :
1. buka file excel yang ada banyak sheet nya
2. tekan Alt + F11 (akan muncul jendela baru  - microsoft visual basic for application)
3. masuk tab Insert > Module, and pastekan macro dibawah ini pada Module Window
Sub SplitWorkbook()
'Updateby20140612
Dim FileExtStr As String
Dim FileFormatNum As Long
Dim xWs As Worksheet
Dim xWb As Workbook
Dim FolderName As String
Application.ScreenUpdating = False
Set xWb = Application.ThisWorkbook
DateString = Format(Now, "yyyy-mm-dd hh-mm-ss")
FolderName = xWb.Path & "\" & xWb.Name & " " & DateString
MkDir FolderName
For Each xWs In xWb.Worksheets
    xWs.Copy
    If Val(Application.Version) < 12 Then
        FileExtStr = ".xls": FileFormatNum = -4143
    Else
        Select Case xWb.FileFormat
            Case 51:
                FileExtStr = ".xlsx": FileFormatNum = 51
            Case 52:
                If Application.ActiveWorkbook.HasVBProject Then
                    FileExtStr = ".xlsm": FileFormatNum = 52
                Else
                    FileExtStr = ".xlsx": FileFormatNum = 51
                End If
            Case 56:
                FileExtStr = ".xls": FileFormatNum = 56
            Case Else:
                FileExtStr = ".xlsb": FileFormatNum = 50
        End Select
    End If
    xFile = FolderName & "\" & Application.ActiveWorkbook.Sheets(1).Name & FileExtStr
    Application.ActiveWorkbook.SaveAs xFile, FileFormat:=FileFormatNum
    Application.ActiveWorkbook.Close False
Next
MsgBox "You can find the files in " & FolderName
Application.ScreenUpdating = True
End Sub


4. kemudian tekan f5 maka otomatis akan memproses
memisahakan sheet menjadi banyak file..

5. lebih lengkapnya silahkan cek dari sumbernya langsung :
https://www.extendoffice.com/documents/excel/785-excel-save-export-sheet-as-new-workbook.html

Komentar

Postingan populer dari blog ini

Buat Website Sendiri dengan Web Hosting Gratis

Download film 2012 full free di bintangi John Cussack

Agar Hasil Mail Merge Hurufnya Besar Semua