Quickly populate a table with random values

Here’s a quick way to populate a sample table with some sample data:

  1. Set “Value for new rows” to be a random pick from the given list:
    List(...).Nth(RoundUp(Random() * [list size]))
  2. Click “Apply for all blank rows”

Note: in rare occasions Random() may return exactly 0, so the cell will remain blank. You’ll have to fix that manually. Not sure if the 0-1 range of Random() outputs is inclusive or not.

3 Likes