Hello,
We are struggling to extract the first image of a column called "photos" then re-upload it in another column.
We tried to do it by having a formula to extract the first attachment url (which is working) :
(IF(BLANK(photos), "", MID(photos, FIND("(", photos) + 1, (FIND(")", photos) - 1) - (FIND("(", photos))))
Then, using the following automation to upload it in our target column "1st_photo" :
=> WHEN a record match conditions "photos" isn't empty THEN update the column "1st_photo" using the url from the formula column as input. However, this automation isn't working
I guess the issue come from the attachment url. Do you have any idea to handle it ?
Does it require a script ?
Thank you very much !