Create Md5 hash not working

md5 hash is created (see console log) but the update text field part of the flow is not triggering. Does anyone know what is going on here?

Thanks inadvance

fairly sure if you change the last line to:
var_script_output_1 = hash you will be all good

1 Like

Thanks Jason.
Did you mean change ‘return hash;’ in the script action block? If so, that didn’t work.

I did yes:
CleanShot 2025-11-17 at 11.41.34

I think I have duplicated your workflow and its working for me (my hash function is slightly different but that shouldn’t matter to this) have, if you haven’t already you could try deleting the update block and recreating.

I also converted my workflow into a ‘On Create’ trigger and ran it manually which also worked:

Sorry a bit stumped

I couldn’t get it to work exactly as your end code, but the code below still produces the hash code.
However, for some reason my update current record action doesn’t want to trigger though. I tried removing the brick and recreating the flow, but no luck.

.

Thanks for taking a look though.

you still have a return in your last line this is terminating your workflow early remove:
return var_script_output_1 it is not needed, when i add that line into mine it breaks

All good now - thanks