Ingesting an expirable image URL doesn't write to Image Column

Continuing the discussion from Ingesting an expirable Image URL doesn't work?:

@Scott_Collier-Weir says you can take an image url column and modifyrows() to push it into an image type column and it should write. However, I cannot get it to do that. What am I doing wrong?

Here is a gif showing the setup:
image stamp problem

Hi @Johg_Ananda - I think the issue is that you need to insert the URL of an image, but the value in the “Image URL Dalle” column isn’t the URL anymore exactly, it’s an image object. Just apply .ToText() before you insert the value.

ModifyRows(thisRow, Table.Image, thisRow.[Image URL].ToText())
3 Likes