Advertisement
Guest User

Students Macro - Automation error issue

a guest
Mar 27th, 2022
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.49 KB | None | 0 0
  1. So i have 2 folders - input, output and a students.xlsm file
  2.  
  3. ```Dim inputSheetName As String
  4. Dim inputFolderName As String
  5. Dim outputFileName As String
  6. Dim outputfoldername As String
  7. Dim macroSheetName As String
  8. Dim reportingSheetName As String
  9. Dim AssessmentFile As Workbook
  10. Dim ws As Worksheet
  11.  
  12. Dim ErrorMessage As String
  13. Dim masterFile As Workbook
  14. Dim newWorkBook As Workbook
  15. Dim myPath As String
  16. Dim myExtension As String
  17. Dim strFileExists As String
  18. Dim parentPath As String
  19. Dim newFilePath As String
  20. Dim outputFilePath As String
  21. Dim outputFile As String
  22. Dim myFile As String
  23.  
  24.  
  25.  
  26.  
  27. '--------------------------------------------------------------------
  28. inputFolderName = "Input"
  29. outputfoldername = "Output"
  30. outputFileName = "Students_Output_File.xls"
  31.  
  32. macroSheetName = "Students Macro"
  33.  
  34.  
  35. '------------------------------------------------------------------------------
  36. ErrorMessage = ""
  37. 'On Error GoTo SomethingGoneWrong
  38.  
  39. 'Optimize Macro Speed
  40. Application.ScreenUpdating = False
  41. Application.EnableEvents = False
  42. Application.Calculation = xlCalculationManual
  43. Application.DisplayAlerts = False
  44.  
  45. Set masterFile = ThisWorkbook 'the .xlsm file containg macro
  46. parentPath = masterFile.Path
  47. myPath = parentPath & "\" & inputFolderName & "\"
  48. outputFilePath = parentPath & "\" & outputfoldername & "\"
  49.  
  50.  
  51.  
  52.  
  53. 'Target File Extension (must include wildcard "*")
  54. myExtension = "*.xls*"
  55. myFile = Dir(myPath & myExtension)
  56. 'Target Path with Ending Extention
  57.  
  58. Do While myFile <> ""
  59. Set AssessmentFile = Workbooks.Open(FileName:=myPath & myFile)
  60. For Each ws In AssessmentFile.Worksheets
  61. ActiveSheet.Name = Replace(myFile, myExtension, "")
  62. Next ws
  63.  
  64.  
  65.  
  66. Application.ActiveWorkbook.Close
  67. myFile = Dir
  68.  
  69.  
  70. Loop
  71.  
  72.  
  73.  
  74.  
  75.  
  76. 'Set variable equal to opened Assessment workbook
  77.  
  78. outputFile = outputFilePath & outputFileName
  79. strFileExists = Dir(outputFile)
  80.  
  81. If strFileExists = "" Then
  82. MsgBox outputFile
  83. 'automation error prompted on the line below
  84. AssessmentFile.SaveAs FileName:=outputFile, FileFormat:=xlWorkbookNormal
  85. Else
  86. If IsFileOpen(outputFile) Then
  87. GoTo CloseTheOpenOutputFile
  88. Else: Kill outputFile
  89. DoEvents
  90. AssessmentFile.SaveAs FileName:=outputFile, FileFormat:=xlWorkbookNormal
  91. End If
  92. DoEvents
  93. End If
  94.  
  95.  
  96. 'Ensure Workbook has opened before moving on to next line of code
  97. DoEvents
  98. ErrorMessage = "there is an issue with the name of the sheet in input file"
  99.  
  100. CloseTheOpenOutputFile:
  101. Application.EnableEvents = True
  102. Application.Calculation = xlCalculationAutomatic
  103. Application.ScreenUpdating = True
  104. Application.DisplayAlerts = True
  105. MsgBox "An instance of " & VBA.Chr(34) & "Output File.xls" & VBA.Chr(34) & " is open. Please close it and try running the code again"
  106. 'Close Input csv Workbook without saving
  107.  
  108. AssessmentFile.Close SaveChanges:=False
  109.  
  110.  
  111.  
  112. End Sub
  113. ------------------------------------------------------------------------------------------
  114. Function IsFileOpen(FileName As String)
  115. Dim iFilenum As Long
  116. Dim iErr As Long
  117.  
  118. On Error Resume Next
  119. iFilenum = FreeFile()
  120. Open FileName For Input Lock Read As #iFilenum
  121. Close iFilenum
  122. iErr = Err
  123. On Error GoTo 0
  124.  
  125. Select Case iErr
  126. Case 0: IsFileOpen = False
  127. Case 70: IsFileOpen = True
  128. Case Else: Error iErr
  129. End Select
  130.  
  131. End Function```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement