Ajuda

Ajuda!

Como colocar imagem e texto para visualização do tipo Deck sem ser do tipo REF de outra tabela. Exemplo: IF([status]=on, texto da imagem,“”)

Como colocar imagem e texto para visualização do tipo Deck sem ser do tipo REF de outra tabela. Exemplo: IF([status]=on, texto da imagem,“”)

Translation : How to put image and text for Deck type display without being REF type from another table. Example: IF([status]=on, image text,“”)

You may want to use a virtual column that will be empty, and use this one as a Label for image.

So, let’s say your table has a column [Image] with a picture.

You wish to display it only if status is not ON.

You will need to create a virtual column, let’s name it “VC_Image”, and its expression will be:

IF([status]="on", [image],"")

its type will be Image.

Here is an example:

For reference:

IF() - AppSheet Help

Use virtual columns - AppSheet Help

1 Like

Hi! How are you Aurelien?

How to let image and text appear together?

example: if status is “on” it shows text and green siren

if “status” is off text and siren red , as shown in the image below.

In your case, the use of virtual column answers your expectation.

You can select only two fields with label property set to on: one type Text (it could be number, but it remains something textual) and the one other with type Image (or photo, drawing, etc)

I mentioned earlier how to do with image type.

For your “textual” type, you must add a virtual column that will be for example:

[carDescription] & "-" & [Status]
2 Likes

Obrigado , mas consegui resolver já .

Vou postar aqui como fiz

1 Like

https://www.googlecloudcommunity.com/gc/AppSheet-Q-A/Help-Please-UX-Tipe-Deck/m-p/474269#M187005

Obrigado !