Like duh, Excel 97 is so yesterday. It's not even supported by Microsoft anymore
Try
If Dir("T:\Apps Support\RELOGS\Call Analysis.xls") <> "" Then ' the file exists, returns "" (empty string) if the file doesn't exist.
MsgBox "File Exists"
Else
MsgBox "File does not exist"
End If
B.M.