Is it possible to use .find for more than one string at a time? For example,
worksheet.find(What:="String1", "String1", "String3", etc...)
It doesn't work now, because it's expecting the After parameter, but I need to check the sheet for a certain set of strings to accurately determine the number of rows I need to read through (my macro grabs data from a workbook and posts it into another workbook).
I know I could always just use a giant If Or statement and loop through all the rows and columns, I just figured using .find would be a bit cleaner.