Dim MyObj As Object, MySource As Object, File As Object
Dim MyFile As String
Set MyObj = CreateObject("Scripting.FileSystemObject")
Set MySource = MyObj.GetFolder("C:\Users\xxxxx.yyyy\Desktop\zzzzz\rrrr\")
For Each File In MySource.Files
MyFile = File
If Len(MyFile) = 98 Then 'length file is always 98 carachters
Workbooks.Open (MyFile)
[COLOR="#FF0000"]'???????????????????????'[/COLOR]
Exit For
End If
Next File