Limit Text List to Selected Records

Does anybody know an easy way to dynamically limit a list in a Text List Object to only selected records in the database. Usually my application will be limited to less than 10 selected records.

Include info(“selected”) in your text list query formula

Actually, that should be info(“visible”). Info(“selected”) returns the number of selected records. Info(“visible”) tells whether this record is visible or not.

1 Like

It worked! I placed the info(“visible”) function in the Query box of the Text List Object. Super simple. Thanks.