Initials icon at primary Table view as label when not exits image

Necesito ayuda, he buscado y leido como poder usar las iniciales de nombre y apellido como icono en la vista de la tabla principal tipo deck cuando no existe una foto y por lo tanto quiero que ese icono sustituya a la foto que estรก pendiente por cargar o que no existe.
Muchas gracias.

Solved Solved
0 2 160
1 ACCEPTED SOLUTION

Thank you and finally I have the solution. Thank you so much

View solution in original post

2 REPLIES 2

Steve
Platinum 4
Platinum 4

Add a virtual column to the table with an App formula expression that presents the photo if it exists or the initials icon if the photo does not exist.

IF(
  ISNOTBLANK([Photo]),
  [Photo],
  TEXT_ICON(INITIALS(USERNAME()))
)

Thank you and finally I have the solution. Thank you so much

Top Labels in this Space