Loop Through Folder but it NEVER STOPS

Realtreegirl75

New Member
Joined
Aug 28, 2022
Messages
31
Office Version
  1. 365
Platform
  1. Windows
I have done all the digging I can online to try to find out how to make this work but no matter what I do, this loop never stops! I end up having to ESC out of the sub. The goal is to loop through a folder (the same folder, so I could set a file path pretty easily, if that would help!) and then:
open the first file
unhide a sheet
save changes
close the workbook
move on to the next
But then exit the sub when its done so its not an endless loop!

Can anyone help with this?? I have a dozen ways I could really use this code but at the moment its cause more trouble than its worth!


Excel Formula:
Sub LoopDIRWorkbooks()
   Dim MyFolder As String
   Dim MyFile As String
   Dim wbk As Workbook
On Error Resume Next
Application.ScreenUpdating = False
'Opens the folder picker dialog to allow user selection
With Application.FileDialog(msoFileDialogFolderPicker)
.Title = "Please select a folder"
.Show
.AllowMultiSelect = False
   If .SelectedItems.Count = 0 Then 'If no folder is selected, abort
msgbox "You did not select a folder"
      Exit Sub
   End If
MyFolder = .SelectedItems(1) & "\" 'Assign selected folder to MyFolder
End With
MyFile = DIR(MyFolder) 'DIR gets the first file of the folder
'Loop through all files in a folder until DIR cannot find anymore
Do While MyFile <> ""
   'Opens the file and assigns to the wbk variable for future use
   Set wbk = Workbooks.Open(fileName:=MyFolder & MyFile)

      ActiveWorkbook.Unprotect 
     ActiveSheet.Unprotect
      For Each Sheet In ActiveWorkbook.Worksheets
    If Sheet.Name = "Dashboard" Then
        Sheet.Visible = True
    End If
Next Sheet
    ActiveSheet.Protect 
    ActiveWorkbook.Protect 


wbk.Close savechanges:=True
MyFile = DIR 'DIR gets the next file in the folder
Loop
Application.ScreenUpdating = True
End Sub
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Tested your macro, it does it's job and ends when there are no other files to process.
Do you have in your folder file with AutoOpen or WorkBook_Open macro's that could create confusion once opened ?
 
Upvote 0
How do I check the AutoOpen? I doubt I have any macros that is creating confusion as everything for this macro is in the same spot (no calling to a different location that may have been overlooked).
 
Upvote 0
You need to know what macro's are in the file you are processing.
Have you done your debugging ? Go to the "VBE" pane, if the "Immediate" pane isn't visible use (CTRL+G), add this line of code Debug.Print MyFile just before
Set wbk = Workbooks.Open(fileName:=MyFolder & MyFile) then place the cursor on this second line and press F9 to insert a BreakPoint on it.
Now launch your macro with F5 and keep your eyes on the names added in the "Immediate" pane every time you press F5 once again. You should see only the names in the folder in process and after the last one the macro will end. If the files are many, to make it less time consuming, create a new dummy folder with only a couple of files in it.
 
Upvote 0
1682084297244.png

Unfortunately, it just kept looping. At this point, I stopped the macro myself. There were only 3 files in this folder. Any other ideas?

That being said, I didn't know about the Debug.Print Myfile, so that was awesome to learn!
 
Upvote 0
Tested once again your macro but wasn't able to replicate your issue. The only difference is that my test file don't contain macros but yours are .xlsm; what sort of macro do they contain ?
Maybe a 'WorkBook_Open' in the ThisWorkBook module ora an 'AutoOpen' in one of the used modules ? If so, what does it do ?
 
Upvote 0
Found it! This is the only Workbook_Open code I have in the workbooks. I had an issue with them changing to manual calculation so I added this to make sure they didn't do that:

Excel Formula:
Private Sub Workbook_Open()
Application.Calculation = xlCalculationAutomatic
End Sub
 
Upvote 0
I added your macro to my test file and that doesn't create your problem either. Sorry, but at the moment I have no other idea, your macro keeps working perfectly.
How do you launch your macro "LoopDIRWorkbooks" ? manually (or Button) or is there a chance that it is Called by some other macro ?
 
Upvote 0
I usually run it manually from the Visual Basics window. And it's not called for another macro, I run this just as it shows. Totally baffled!
 
Upvote 0
I give up, another chance only if you attach your file (without sensible data). By the way, maybe, have you activated some sort of Add-In in your Excel ?
 
Upvote 0

Forum statistics

Threads
1,214,942
Messages
6,122,367
Members
449,080
Latest member
Armadillos

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top