We have an existing folder structure as follows for documents and pictures related to a job.
P:FFRED ENG58412
I am attempting to write code to find a folder based on its name.
eg
Folder name I am looking for: FRED ENGINEERING
folder does not exist but FRED ENG does.
how would I write the filter command below to show all folders that begin with FRE
With Application.FileDialog(msoFileDialogFolderPicker)
.InitialFileName = inpath
.Filter = “Folders”
.Show
[FolderPath] = .SelectedItems(1)
End With