Cambiar mensaje Error

Hola!!!

Puedo de alguna manera modificar el mensaje de error "There is already a row with the key (...)".

Me gustaría incluir un mensaje más sencillo para mis compañeros  no "informáticos".

Gracias!!!

Solved Solved
0 6 384
  • UX
1 ACCEPTED SOLUTION

ISBLANK(
  FILTER(
    "table",
    AND(
      NOT([_THISROW].[_ROWNUMBER] = [_ROWNUMBER]),
      ([_THISROW].[key-column] = [key-column])
    )
  )
)

Replace table and key-column with the appropriate names.

View solution in original post

6 REPLIES 6