i can never repeat a list of texts and i do not understand why
Depends on how do you save those urls? Is it a single string, what is the “limiter” of each url, are they a list of texts??
If it is a string that has a separator, let’s say “,” then you can use this formula in the repeat:
MAP(SPLIT(myText, ","), {value: item})
What does it do?
- splits your text into a list of texts
- since you can only repeat with a list of objects in the MAP formula we create a list of objects from the list of texts.
- Now you can repeat with your list of texts, just use the “value” property that we created in the MAP transform formula
- To supercharge this, you can use the “rich text” view component from the marketplace to even format those URLs to rich text and make them clickable in a super easy way.
Cheers, and hope you’re in your good mood recently.
1 Like