There are always moments where the helpers and wizards run out of steam, and this is one of them.
You cannot loop a node in a process flow back to another node in the same flow. And a node can only be present in one process flow. Using it in another process flow means making a separate copy in that flow that no longer is tied to the original.
To run code repeatedly in one execution, you need to use macro language or other means like CALL EXECUTE, and that means code nodes.
To reuse code, you have to store it in a .sas file and %INCLUDE that wherever needed.
... View more