I've built a flow that parses hundreds of files for a person's first and last name, and a date of an occurrence:
John Deer 11/19/2021
I need to write these data into an Excel workbook but I can't just drop them in. I need to run a macro on the workbook to find the instance of John Deer's name and then move over a dozen cells and plop the date in.
I can activate my macro through PAD, but I don't know how to pass variables between PAD and Excel. In VBA Outlook, you just fully qualify your macro target and then include parameters.
'testbook.xlsm'!TARGETMACRO(someparam1, someparam2,...)
Guidance is deeply appreciated.