VBA check if file exists example Excel Macro code helps to Check if file Exists in Location using Excel VBA. You can use FileSystemObject or Dir function to check if file Exists in Location using Excel VBA.
For example, When we are automating any task we generally save the output file in a location. Using this program we can check if there is any file exists already in the same location. So that we can delete or rename the old file.
Solution(s):
You can use FileSystemObject or Dir function to check if file Exists in Location using Excel VBA.Follwoing are the examples to show you how to check If a file is already exists in a folder or not. Follwoing are the two different methods.
Check if file Exists in Location using Excel VBA – Example Cases:
- Check if file Exists in Location using Excel VBA – Using FileSystemObjects
- Check if file Exists in Location using Excel VBA – Using Dir Function
Check if file Exists in Location using Excel VBA – Using FileSystemObjects
Following is the example to check if a file exists in a folder with using FileExists function of FileSystemObject.
Code:
'In this Example I am checking if Sample.xls file which exists in the same location of the macro file Sub sbCheckingIfFileExists() Dim FSO Dim sFile As String sFile = ThisWorkbook.Path & "Sample.xls" 'OR '"C:Sample.xls" 'You can change this Loaction Set FSO = CreateObject("Scripting.FileSystemObject") If Not FSO.FileExists(sFile) Then MsgBox "Specified File Not Found", vbInformation, "Not Found" Else MsgBox "Specified File Exists", vbInformation, "Exists" End If End Sub
Check if file Exists in Location using Excel VBA – Using Dir Function
Following is the example to check if a file exists in a folder with using Dir function.
Code:
'In this Example I am checking if Sample.xls file which exists in the same location of the macro file Sub Check_If_File_Exists() Dim stFileName As String stFileName = ThisWorkbook.Path & "Sample.xls" 'You can change this location If Dir(stFileName) <> "" Then MsgBox "Specified File Exists", vbInformation, "Exists" Else MsgBox "Specified File Not Found", vbInformation, "Not Found" End If End Sub
Output:
If file exists in a location, it will show following message. Otherwise it will show “Specified File Not Found” message.
Instructions:
- Open an excel workbook
- Press Alt+F11 to open VBA Editor
- Insert a new module from Insert menu
- Copy the above code and Paste in the code window
- Press F5 to check the output
- You should see a message box as shown above
- Save the file as macro enabled workbook
Download Example File:
Please Download the following example file.
Analysistabs – Check if File Exists
Hello,
I like the above VBA coding and want to know if an macro can be created to see the list of files exist in some particular folder or not?
and instead of msg box pop-up, it will just show it in one cell adjacent to the file name if it exist or not? If it can be done then it will resolve all my purpose. Please e-mail me at —- if you already have any sample macro for it.
Thank you
Hi Raman,
You can use the tool available in our Add-in:
ANALYSISTABS Excel Add-in
Thanks-PNRao!
Thank you for the quick response!
However, the link showed a Analysis of data and I need an macro to check for various files exist in particular folder or not. I am not sure if the same link can be modify for my need or not?
Could you please help me and assist me if an macro can be created to check multiple files exist in the folder or not and instead of pop-up message box, it will show in excel columns only?
Raman Goel
Thanks Buddy,
Analysis Tab is awesome, however it is not resolving my purpose completely. The tab is pulling the file names from the folder but I still need to check the names manually to find if anything missing.
We save some same set of files each day in particular folder, so what I am asking is if through formula it is possible to check if file exist or not and will revert with “Yes” or “No” then it will be great.
i am not very good at excel so it is difficult for me to frame the formula. Can you please assist me if possible?
Raman Goel
Thanks Buddy,
Analysis Tab is awesome, however it is not resolving my purpose completely. The tab is pulling the file names from the folder but I still need to check the names manually to find if anything missing.
We save some same set of files each day in particular folder, so what I am asking is if through formula it is possible to check if file exist or not and will revert with “Yes” or “No” then it will be great.
i am not very good at excel so it is difficult for me to frame the formula. Can you please assist me if possible?
Raman Goel