答:
Sub Demo()
Dim Sht As Worksheet
Dim FilePath As String
FilePath = ThisWorkbook.Path & "\"
Application.ScreenUpdating = False
For Each Sht In ThisWorkbook.Sheets
If Not Sht.Name = "分析" Then
With Sht
.UsedRange.Value = .UsedRange.Value
.Copy
End With
With ActiveWorkbook
.SaveAs Filename:=FilePath & Sht.Name
.Close
End With
End If
Next Sht
Application.ScreenUpdating = True
MsgBox "导出完成"
End Sub