Hello Experts,
In my application I would like to display data randomly in ENUMLIST & those random data will be coming from the spreadsheet. For example, in my spreadsheet, the available data in the column is:
If the values that will be populating your EnumList are values from a table’s key column, you can generate a list of (e.g.) 3 random values using this in the EnumList column’s Valid If expression:
(with appropriate substitutions for table and key-column).
If the values that will be populating your EnumList are not values from a table’s key column, you’ll need to add another column to the table with the EnumList column that has the expression above as this new column’s App formula. Then, in the EnumList column’s Valid If, use the expression:
[that-new-column][enumlist-value-column]
(with appropriate substitutions for that-new-column and enumlist-value-column).