Background: I made a macro a user can drop in a workflow, they enter a folder path in a textbox and it deletes all those .bak files Alteryx automatically drops in that particular folder.
The macro needs no inputs from the workflow, the user just types in the folder into the tool configuration. I prefer this to having to push it through a field in the workflow.
Now, ideally I'd like this tool to run last in the workflow so it deletes any .bak files created during the current run too. That means a block until done, which means it needs an input anchor. But both a control parameter and a macro input force the tool configuration to have a user select a field to pass into the macro. That's an extra unnecessary step, and here it may confuse the users because that field isn't going to do anything, it's irrelevant to the macro. I have to explain to them "pick some field from your workflow but it won't do anything" and that is not ideal.
Is it possible to make a macro that has a generic input anchor like a Formula tool does, where I can just connect it in the workflow stream and not have to select some field in the macro configuration?