Answers for "xl vba check for folder"

VBA
22

xl vba check for folder

Public Function IsDir(s)
    IsDir = CreateObject("Scripting.FileSystemObject").FolderExists(s)
End Function
Posted by: Guest on April-03-2020

Code answers related to "VBA"

Browse Popular Code Answers by Language