Today I wrote a macro, that uses the Python tool (first time I've ever used the tool, first time I've ever done something with Jupyter notebooks), that is supposed to hash (SHA256) the field value that is entered.
It worked great until I added more records and realised that the input of the Python tool is a multi-join, so it doesn't matter how many records go into the tool, only ONE record comes out.
Is there any way to fix this ? I understand why it's written that way, but in my case I want X records in and X records out, not X records in and 1 record out.
Also, ignore my actual Python coding, I'm still learning the best way to use pandas.