The string you pass to Dir can contain wildcard characters (you've seen one * meaning one or more of any character). You can build up your string using wildcards, for example, assume you want to find a file with the word "restaurant" in he title then you can find such a file with:
Which will return the first file that contains "restaurant" anywhere within the filename.
If you have a lot of potential keywords you want to find, it might be worth returning all the filenames from the folder (eg using Dir), store them maybe in an array and then iterate over the array searching for each keyword.
Bookmarks