Is there any possible way to simply repeat a list of image urls in appgyver?

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?

  1. splits your text into a list of texts
  2. 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.
  3. Now you can repeat with your list of texts, just use the “value” property that we created in the MAP transform formula
  4. 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