I want to loop through the files in a folder, select only one that is NOT Thisworkbook, do something, then exit the loop.
Dim SelectedFile As String
SelectedFile = Dir(PathName:="C:\MyFolder\")
Do Until SelectedFile <> ThisWorkbook.Name
If SelectedFile <>...