Hello,
I want to fetch the public URLs from my airtable attachement field to use them into a carrousel visual.
I’m stuck at getting the url as there are multiple identical raw string inside a same array.
Here is the mapping I tried : {{map(54.array; “url”)}}
and the result : * URL ImageArray
- 1 empty
- 2 empty
- 3 empty
- 4 empty
- 5 empty
Tell my if I’m missing something or if you need more information.
And do not hesitate to say if you see an easier way to proceed a part or the whole action as I’m still new to make 
Thanks in advance as any help is welcomed

P.S. : I use the opportunity to ask : is it possible to upload visuals on different slides (to make a carrousel) based on a template on canva ?
Full-process_Google-slides :
Module3-Set-multiple-variables_Input.json :
Module3-Set-multiple-variables_Input.json (1010 Bytes)
Module3-Set-multiple-variables.json :
Module3-Set-multiple-variables.json (584 Bytes)
Module2-Array-Agregator.json :
Module2-Array-Agregator.json (12.0 KB)
Module3_Set-multiple-variables_Array-of-URL :
Still stuck with mapping the array of URL. 
For now, I keep matching each URL individually :
{{map(54.array[1].En_Bref-Image
; “url”)}}, etc.
Welcome to the Make community!
You must use the built-in functions map
and get
together to access collection variables within an array. Alternatively, use an Iterator module.
For more information, see the “Mapping with arrays” link below.
Here are some useful links and guides you can use to learn more on how to use the Make platform, apps, and app modules. I found these useful when I was learning Make, and hope they might benefit you too —
Getting Started
Help Centre Basics
Articles & Videos
Hope this helps! Let me know if there are any further questions or issues.
— @samliew
P.S.: Investing some effort into the Make Academy will save you lots of time and frustration using Make.
1 Like
Hello @samliew,
Thanks for the quick answer !
I tried completing the intermediate course “Using get() and map() functions” to check if I had missed something but I can’t seem to get it. I also reread the blog posts you linked.
To make sure we talk about the same thing:
- I want my tool module (set multiple variables) to make an array of every urls contained in each collection (1, 2, 3, etc.).
I tried :
- {{get(map(103.array; “1.url”)1)}} → get the 1st url
- {{get(map(103.array; “1.url”)url)}} → get the word url
- {{get(map(103.array.
En_Bref-Image <url/png/jpg>
; “1.url”)url)}} → get the word url
- {{get(map(103.array.
En_Bref-Image <url/png/jpg>
; “1.url”)1)}} → get the number 1
But can’t seem to figure out how to get all url in one action. Sorry if the question seems idiot or easy as I may miss a simple logic here.
Thanks for your answer and have a nice day ! 
e.g.: (paste this into the field)
{{ map(103.array; "En_Bref-Image.1.url") }}
Hope this helps! Let me know if there are any further questions or issues.
— @samliew
P.S.: Investing some effort into the Make Academy will save you lots of time and frustration using Make.
3 Likes
Thanks a lot @samliew !
That was it !
Didn’t know you could call an object inside a collection inside an other collection !!! Thanks ! 
1 Like