UUID generator
I'm trying to make a standard guid, but hex() is giving me a weird value. I assume it's because of the encoding hex() uses.
Can anyone give me some clarity on the below script? Or if someone even just has a UUID function that would be even better.
Names default to here(1);
full_h = "123e4567-e89b-12d3-a456-426655440000";
h = substitute(h, "-", "");
n = hex to number(h);
h_again = hex(n);
n_ag...
vince_faller
robhanssen