Here’s a quick way to populate a sample table with some sample data:
- Set “Value for new rows” to be a random pick from the given list:
List(...).Nth(RoundUp(Random() * [list size])) - 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.
