Controlling unique values, not a key

There is a table with the key “uniqueid (” UUID “)”.
This table has two text columns (not a key), the contents of which must be unique within this table.
What is the best way to do the uniqueness check at save time?

Solved Solved
0 3 396
1 ACCEPTED SOLUTION

Steve
Platinum 4
Platinum 4

Try:

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

with appropriate replacements for this-table and this-column.

View solution in original post

3 REPLIES 3
Top Labels in this Space