Hi everyone. I have a workflow that has the Render Tool as the last output step, and within the same workflow, I set up a VBA macro to run on the Render Tool's output file.
The VBA macro script is written in Text Input Tool with a placeholder [filepath], as in:
Set zWorkBook = zExcelObject.Workbooks.Open("[filepath]\RenderOutput.xlsx"), which will then be replaced using Find Replace Tool. Currently, the file name of the Render Tool's output is fixed as "RenderOutput.xlsx".
I wonder if there is a constant, like [Engine.WorkflowDirectory] & [Engine.WorkflowFileName], within Alteryx that I can use to feed the full path directly to the VBA script? or may be a solution to make the VBA script dynamic.