I need to hide the action button if data was filled

Hi, I need to hide the action button if the column/row not empty.

For example, if I click on the action button, then add a new data in this row (Estado).

Yeyo1976_0-1714605830511.png

If this ticket is "respondido", then hide the double check action button.

Yeyo1976_1-1714605944315.png

Again, thanks in advance!

 

0 6 99
6 REPLIES 6

You should put an appropriate expression in the action's

TeeSee1_0-1714607877727.png

 

Hi, thanks, but I have no clue about the expression.

I have read a lot of Q&A here and I can't reach the solution.

 

ISNOTBLANK(SELECT(...)) or ISNOTBLANK(column to check) can be used.

I have a complete answer, with more data, but something happend...

I actually use tihis formula:

and((LOOKUP(USERSETTINGS("Correo Usuario"), "Usuarios", "Correo Electronico", "Rol Usuario"))<>"Apoderado", (NOT(IN([Resuelto], Ticket[Resuelto])))) ,ISBLANK([Resuelto])

but hide in all Estados

Yeyo1976_1-1714608766092.png

Thanks!

and(
 LOOKUP(
  USERSETTINGS("Correo Usuario"),
  "Usuarios",
  "Correo Electronico",
  "Rol Usuario"
 ) <> "Apoderado",
 NOT(
  IN(
   [Resuelto],
   Ticket[Resuelto]
  )
 )
) ,
ISBLANK([Resuelto])

Your expression (somewhat cleansed) is grammatically incorrect. At least the last piece is not part of AND.

Thanks, I'll keep searching.
Top Labels in this Space