Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
I have a list of files, with the directory path from cells a1 to a10 and want to check to see if any do not exist. I would like the file names assigned to an array in vba, check them off and if one does not exist stop the code running with an error message. Here is what I have works well for one file. Sub test2() Dim sName As String sName = Range("A2").Value If Dir(sName) < "" Then 'do nothing in this case Else MsgBox "file Not found, stop the code at this point" 'file was found End If End Sub Thanks Chad |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Command Line. How to tell to XL : If the xls file exist : Open it, if it does not exist : Create it. | Excel Programming | |||
Does File Exist | Excel Programming | |||
File does not exist | Excel Programming | |||
Does file exist? | Excel Programming | |||
does a file exist? | Excel Programming |