We solved this problem in another way (fewer steps too). We made this tool: miniextensions.com/airtable-attachments-to-urls. It extracts the URLs of all attachments and saves them in field on Airtable. It separates URLs by commas if you have multiple attachments in one record.

We solved this problem in another way (fewer steps too). We made this tool: miniextensions.com/airtable-attachments-to-urls. It extracts the URLs of all attachments and saves them in field on Airtable. It separates URLs by commas if you have multiple attachments in one record.

@Moe,
That’s a cool tool.
Since there’s no easy way to split and render lists from a text field, I recommend you consider adding the option of dropping these into a rich-text field as bulleted link items - will make for a much more chummier presentation and utilization of the URL list.
In a rich text field you could also display the file name as a link and hide all the ugliness of the URL. Airtable - after all - is all about pretty and URLs are the opposite of pretty.
And, why abandon the file name? If users are using this mini-extention to escape from the sometimes insane aspects of storing the document in Airtable, help them escape fully so they can delete the attachments field altogether.
Hi, it’s really simple to get only urls from images without paying anything.
Here’s how to do it:
- Export the list you want in CSV.
- Open the CSV file with Google Sheets.
At this point, you should have fields containing a lot of blabla, as well as direct links to your images; you will have to extract them.
- Create a new column called something like image_url
- Extract the url with the following formula:
=REGEXEXTRACT(B2; "\((.*)\)")
Done
Of course the regex can be improved in case there are several images, but in my case I do not need it.
Regards,
@Moe,
That’s a cool tool.
Since there’s no easy way to split and render lists from a text field, I recommend you consider adding the option of dropping these into a rich-text field as bulleted link items - will make for a much more chummier presentation and utilization of the URL list.
In a rich text field you could also display the file name as a link and hide all the ugliness of the URL. Airtable - after all - is all about pretty and URLs are the opposite of pretty.
And, why abandon the file name? If users are using this mini-extention to escape from the sometimes insane aspects of storing the document in Airtable, help them escape fully so they can delete the attachments field altogether.
Hello to you,
you seem to handle Airtables well...
I am stuck on an important point for my client in terms of images and being able to export them in a MAKE scenario to Woocommerce...
1/ My client has encoded his product list in airtable, an attachment field is created and he loads his product photos in this field
2/ on my side I use MAKE to get the information of this field, Url
3/ The concern is that the url where the image is deposited and a transformed URL, it does not contain the name of the image and its extension
I get this:
Main image (featured)Array
- 1Collection
- ID
attIFakDybNBw0BNe - width
900 - height
900
*** URL**
https://v5.airtableusercontent/v1/17/17/1685635200000/GIvNsPRdHU5MMCeq6yL8Mw/9jgDWChRNrQ-wuiD7UudfmNbA2KC6FzXUKZxSeUeH9CapN5ypoL6-7OZZ_rmaMJSuDxZjXeetWiUazXbaqC_iaKv-wNqaz_j_1oFd7_PvuQRaVq35KFGTwz9lym1Gmt1sgwY-5A5S2xP0-PrpDm84VSvC9zFKlkKnz39qOnxxXMyDcuUW4GOVVmfpisO_7jUI8RO_W1hEuGqz9-B8JJXPQ/vFAuGZKlM8VewaXAANZ8bjogYArea_nu1mmHhIBkomQ
- File name
png-clipart-project-team-project-manager-business-outsourcing-business-service-people.png - Size
31992 - MIME type
image/png
///
You can see that I can't find an exploitable url, for example like this:
https://v5.airtable.xxxxx/mypicturename.JPG
Suddenly, when I transfer this request to Woocommerce, it fails to retrieve the image in Airtable...
I'm really annoyed and I don't know how to solve the problem..
Helllllp 😉