Finding a folder

K

kevin flock

Is there a way to find a folder with a partial name the
way you can find a file with a partial name?
 
P

Perry

Use the Dir() function

? dir("c:\temp", vbDirectory)
temp

or

? dir("c:\temp", 16)
temp

Krgrds,
Perry
 
Top