Hi,
When doing a list with repeat is it possible to limit the number of records it shows?
For example, I pull a list of about 50 records. Can I just have it show the first 5?
Hi,
When doing a list with repeat is it possible to limit the number of records it shows?
For example, I pull a list of about 50 records. Can I just have it show the first 5?
Hi, sure it’s possible I’d suggest using SLICE Formula function to do this. That allows you to decide which indexes you want to repeat. In your example it would look something like:
SLICE(appVars.myList, 0, 5)
Also, if you want to decide what to show based on more complex reasoning, you could try using SELECT.
Thanks. I’ll check it out!