Unable to save the edit

Hi everyone,

Anyone please help me to find out why after click Edit button then I try to save It give me the validation as attached.


s.

Solved Solved
0 5 126
1 ACCEPTED SOLUTION

Thanks.
Assuming:

  • this field is in the table โ€œUserโ€
  • [ID] is the key_column of this table
  • the 2nd term if for avoiding duplicates

I would suggest:

AND(
  IN([_THISROW],User Auth[Matrix]),
  ISBLANK(
    FILTER("User",[_THIS] = [ID])
    -
    LIST([_THISROW])
  )
)

For reference: last example from:

View solution in original post

5 REPLIES 5

Aurelien
Google Developer Expert
Google Developer Expert

Hi @fteam

Welcome to the community !

Can you share the valid_If expression you have used for this field ?

and(
in([_thisrow].[ID],User Auth[Matrix]),
not(in([_thisrow].[ID],User[ID]))
)

User table is the current table to edit
User Auth table is the table to verify if user enter ID that contain in User Auth

Thanks.
Assuming:

  • this field is in the table โ€œUserโ€
  • [ID] is the key_column of this table
  • the 2nd term if for avoiding duplicates

I would suggest:

AND(
  IN([_THISROW],User Auth[Matrix]),
  ISBLANK(
    FILTER("User",[_THIS] = [ID])
    -
    LIST([_THISROW])
  )
)

For reference: last example from:

Ok. It worked. Thank you very much.

Top Labels in this Space