check if file exists? Home Board Archive Index Excel VBA check if file exists? Posted by doug on January 24, 2001 2:03 PM anyone know a fast way to check if a file exists? Posted by Celia on January 24, 2001 4:35 PM If Dir("full path filename") <> "" ThenMsgBox "File exists"ElseMsgBox "File does not exist"End If