Ini bukan fitur bawaan.
Namun, jika Anda menjalankan kode ini, itu harus melakukan pekerjaan.
Sub SaveSheets()
Dim strPath As String
Dim ws As Worksheet
Application.ScreenUpdating = False
strPath = ActiveWorkbook.Path & "\"
For Each ws In ThisWorkbook.Sheets
ws.Copy
'Use this line if you want to break any links:
BreakLinks Workbooks(Workbooks.Count)
Workbooks(Workbooks.Count).Close True, strPath & ws.Name & ".xlsx"
Next
Application.ScreenUpdating = True
End Sub
Sub BreakLinks(wb As Workbook)
Dim lnk As Variant
For Each lnk In wb.LinkSources(xlExcelLinks)
wb.BreakLink lnk, xlLinkTypeExcelLinks
Next
End Sub
Untuk menjalankan kode, lakukan hal berikut:
- Buka editor VBA ( Alt+ F11)
- Di pohon di sudut kiri atas, klik kanan pada buku kerja Anda dan masukkan modul baru
- Salin kode di atas ke modul ini
- Tutup editor VBA
- Di Excel tekan Alt+ F8untuk menjalankan makro dan pilih
SaveSheets
atau lihat Bagaimana cara menambahkan VBA di MS Office?