Display image from web url (like =IMAGE(URL) formula)
I have an item field with a URL to an image and an item saved search…
Can I display the image from this URL? In spreadsheets I have used =IMAGE(“url) to do this and I am hoping for something similar in Netsuite
To include it in the search results, you’d need to add a formula(HTML) field with this html as a minimum:
'<img src="'||{custitem_fieldwithimageurl}||'">'
You can also add some attributes to this, like width (here’s some starter info)