I would like to be able to select an attached record by its index. The use case would be to select a record at random from a grouping of records that meet some criteria - i.e picking a winner of a giveaway.
Currently, my random number is generated using 3rd party automation (it would be great if a random # generator could be added in some capacity, but that is a different thing). Assuming you select the number or generate it randomly, there is currently no good way to use that number as an index to select a record.
I imagine a formula option called "INDEX" that takes 2 arguments. The first being the list of records, and the second being the index. This formula will search all the attached records and return the record matching the index count .
Ex: List = [entry1, entry2, entry3]
INDEX ( List, 0) = "entry1"
INDEX ( List, 2) = "entry3"