Dear Sirs,
I just come up with a problem that the vba runs the loop but will never end. The codes previously work correctly but seems fails after I made some slight changes to the codes and folder file names or whatever which I cannot remember :
Files in folder :
11038-CAL-201906.xls
11041-CAL-201906.xls
![]()
Sub CAL_ALLOpen() 'Open each CAL file and do formatting ' 'Ctrl+ L ' Application.AskToUpdateLinks = False Application.DisplayAlerts = False Dim MyCALFiles As String Dim UniqueName As Boolean UniqueName = False MyCALFiles = Dir(ActiveWorkbook.Path & "\*CAL*.xls") Do While MyCALFiles <> "" Workbooks.Open ActiveWorkbook.Path & "\" & MyCALFiles Application.DisplayAlerts = False Workbooks(2).Activate Sheets("CAL-GTT").Select Range("F9").Value = 500 Workbooks(2).Activate Workbooks(2).Close SaveChanges:=True Application.DisplayAlerts = True On Error GoTo 0 MyCALFiles = Dir Loop Exit Sub Application.AskToUpdateLinks = True Application.DisplayAlerts = True Application.EnableEvents = True MsgBox "CAL Formatting Completed & Saved in Folder" End Sub
Would like if someone could help spotting out where the error is ?
Many thanks !
Bookmarks