split.xls.vb 905 B

123456789101112131415161718192021222324252627282930
  1. Sub Workflow(sourceFile As String)
  2. Dim Current As Worksheet
  3. Dim targetFile As String
  4. Dim fileFormat As Integer
  5. Dim ext As String
  6. Workbooks.Open Filename:=sourceFile
  7. If Right(sourceFile, 3) = "xls" Then
  8. sourceFile = Left(sourceFile, Len(sourceFile) - 4)
  9. fileFormat = XlFileFormat.xlExcel7
  10. ext = ".xls"
  11. Else
  12. sourceFile = Left(sourceFile, Len(sourceFile) - 5)
  13. fileFormat = 51 ' XlFileFormat.xlOpenXMLWorkbook
  14. ext = ".xlsx"
  15. End If
  16. For Each Current In Worksheets
  17. Current.Select
  18. targetFile = sourceFile + "_" + Current.Name + ext
  19. Current.Copy
  20. ActiveWorkbook.UpdateLinks = xlUpdateLinksNever
  21. ActiveWorkbook.SaveAs Filename:=targetFile, fileFormat:=fileFormat, CreateBackup:=False
  22. ActiveWorkbook.Close
  23. Next
  24. ActiveWorkbook.Close
  25. Application.Quit
  26. End Sub