So nothing matches your Path & Cell content. Check in debug step by step mode …
Can you post a working example with the coorect phot names and path,I drives me nuts.
Sub Check1()
Dim P$, V, F$, L&
P = ThisWorkbook.Path & "\Test\"
For Each V In [M1].CurrentRegion.Columns(1).Value
F = Dir$(P & V): If F > "" Then L = L + 1: Debug.Print P & F
Next
Debug.Print "Total :"; L
End Sub