Data only one time in coloum

Hello,

if the operator will insert a new serialnumber the app should check that the same serialnumber doen't exist in the same coloum in a previous row. 

How can I do that? 

0 2 73
2 REPLIES 2

Typically you should not user serial number generation system in AppSheet.

Sequential keys - AppSheet Help

On avoiding duplicates , please take a look at the following expression for valid_if of the column as mentioned in the article below.. However even this can fail if two users simultaneously create a / update a record.  "Use lists to validate column values"

List expressions - AppSheet Help

ISBLANK(
  FILTER(
    "Table Name",
    ([_THIS] = [Column Name])
  )
  - LIST([_THISROW])
)

 

 

Thanks very much. It solved my problem too... 😁
Greets!

Top Labels in this Space