Aug 02, 2016 02:01 PM
Perhaps I’m missing it, but how do I generate random numbers? I am missing “randbetween” and “rnd” from Excel.
Thanks for any and all help.
Solved! Go to Solution.
Dec 11, 2017 06:45 AM
Sorry but it is not working. With this formula I get the same numbers for several rows…
Dec 11, 2017 06:57 AM
Not very likely. Did you try to refresh the base?
Dec 11, 2017 07:08 AM
Yes didn´t help.
May be I am doing something wrong?
Dec 11, 2017 07:16 AM
Sorry. You are right. :slightly_smiling_face:
Dec 11, 2017 07:17 AM
What it does is grab numbers from the RECORD_ID. So the numbers you see are random, but not unique.
The other trick (with time) maybe works better in your case.
A combination of the two methods is an option too of course…
Dec 11, 2017 07:21 AM
With Record ID you get an unique output. But the outcome looks crazy (many numbers and letters) and so it is not realy usable for an ordernumber.
Dec 11, 2017 07:23 AM
For order numbers you can also use AT’s Auto Number field. Maybe with something in front of it…
Dec 11, 2017 07:29 AM
I want to hide the casenumbers to prevent vendors from gathering information out of it. So unfortunately this solution is not working for me.
In software like excel…you have the function RANDOM() for it.
Dec 12, 2017 10:48 AM
Try DATETIME_FORMAT(CREATED_TIME(),'X')
.
That will give you the Unix timestamp as a string; e.g., ‘1511398652’. You can then chop it up or otherwise obfuscate it as necessary. The results won’t be random, but they should be unique — with one exception: The first three records in a table are created at the time the table is, and all bear the same timestamp.
In theory, you can use 'x'
instead of 'X'
as the format specifier and get the timestamp with milliseconds included — ‘1360013296123’ is the example from the Airtable help page — but it appears CREATED_TIME()
is stored precise to the second only. The results I get with DATETIME_FORMAT(CREATED_TIME(),'x')
all have three zeroes as the rightmost three digits.
Dec 14, 2017 03:43 AM
Thanks Vann Hall I will use that!