Hi everybody,
This is my first time building an app in Appsheet. I have solved most of my questions by reading things in this forum, along with studying using the articles of the Help Center. However, no luck so far with this issue
I would want to display images in my form depending of the user input. I am aware of the Static image in form method. In fact, I tried to put a LOOKUP() expression in the Content property of my Show column (instead of a static name/URL) for search the required image, but it did not work.
Below, there is a screenshot of what I am trying to achieve. I would be very grateful if anyone could point me in the right direction.
Solved! Go to Solution.
Use a Content expression that chooses the appropriate image. For example:
SWITCH(
[Product],
"Product A",
"Images/Product A.jpg",
"Product B",
"Images/Product B.jpg",
...,
""
)
See also:
User | Count |
---|---|
25 | |
15 | |
4 | |
3 | |
3 |