May 30, 2021 10:32 AM
Hi guys, I’m trying to create a unique alphanumeric code(length 4) out of Record ID and Autonumber. But I am getting an error while doing so. Is there any way to find it?
Thanks,
Chintan
Solved! Go to Solution.
May 30, 2021 10:43 AM
LEN()
doesn’t work on numbers.
So try LEN({Random}&"")
to force it to calculate for a string.
May 30, 2021 10:43 AM
LEN()
doesn’t work on numbers.
So try LEN({Random}&"")
to force it to calculate for a string.
May 30, 2021 11:08 AM
This is perfect, thanks.!!