批量将工作表转换为工作簿
动画中所粘贴的代码如下:
(拖动底部滑块,可见完整代码)
Sub Newbooks()
'EH技术论坛。VBA编程学习与实践。看见星光
Dim sht As Worksheet, strPath$
With Application.FileDialog(msoFileDialogFolderPicker)
'选择保存工作薄的文件路径
If .Show Then
strPath = .SelectedItems(1)
'读取选择的文件路径
Else
Exit Sub
'如果没有选择保存路径,则退出程序
End If
End With
If Right(strPath, 1) <> '\' Then strPath = strPath & '\'
Application.DisplayAlerts = False
'取消显示系统警告和消息,避免重名工作簿无法保存。当有重名工作簿时,会直接覆盖保存。
Application.ScreenUpdating = False
'取消屏幕刷新
For Each sht In Worksheets
'遍历工作表
sht.Copy
'复制工作表,工作表单纯复制后,会成为活动工作薄
With ActiveWorkbook
.SaveAs strPath & sht.Name, xlWorkbookDefault
'保存活动工作薄到指定路径下,以默认文件格式
.Close True '关闭工作薄并保存
End With
Next
Application.ScreenUpdating = True '恢复屏幕刷新
Application.DisplayAlerts = True '恢复显示系统警告和消息
MsgBox '处理完成。', , '提醒'
End Sub