Sarah Stone reached out and was unfortunately not able to share in this meeting. However, we did share a fun conversation about Randomness in Smartsheet.
Because Smartsheet does not have a RANDOM function native to the platform, you have to make one yourself. Sarah used the following function, which uses prime numbers and seems to work well:
=IFERROR(INDEX({Dictionary All Words}, MOD((Today@row - DATE(YEAR(Today@row), 1, 1)) * 73 + 19, COUNTIF({Dictionary IDs}, <>"")) + 1), "")
Here is a community article talking about the same thing - Link
And here is a community suggestion where you can Up Vote the idea for Smartsheet to add a Random function. Go vote if you have a use-case for this - Link
Has anyone else needed to use a RANDOM function like this in Smartsheet?