I cannot figure out the best way to have a default image that's not editable by the user. I want to have a default image shown if the user doesn't add a photo, but I can't figure it out.
Solved! Go to Solution.
You could have a relative path to it as Initial Value (image columns save data as Text) and then your user could just override it.
Another idea would be to add that relative path with an action on save if ISBLANK([Image]).
Idk, there are always different ways
You could have a relative path to it as Initial Value (image columns save data as Text) and then your user could just override it.
Another idea would be to add that relative path with an action on save if ISBLANK([Image]).
Idk, there are always different ways
Thanks! Is there a way for me to hide this column from app users while still using this to pick the image shown?
You can add another image column, real or virtual, with an appformula of:
IF(
ISBLANK([OriginalImageColumn]),
"Placeholder",
[OriginalImageColumn]
)
User | Count |
---|---|
18 | |
14 | |
11 | |
7 | |
4 |