Default Image

Hello,

I have an estimate column with a Main vehicle picture, however, I want to add an initial picture when the car doesn’t have a picture so that my column are all straight (see picture).

I created a settings table where the google drive link is stored, the link is online for everyone. How can I grab the link from there to display if there’s no present picture.

0 3 310
3 REPLIES 3

What I would recommend is using a second column, NOT included on the form, as the display image. It is set by an App Formula such that If the main image column is blank then assign the default image. Otherwise assign the user-selected image. This method will ensure that an image is always shown…even if the row was edited and the main image was cleared.

How would this be done?

Virtual Column type image with an If.

IF(
 ISBLANK([ImageColumn]),
 "ThePath/ToImage.whatever",
 [ImageColumn]
)

 

Top Labels in this Space