Valid If - for existing row

I have a “valid if” condition whether a customer number exists. It works for a new entry but not when I edit the row. What can i do?

NOT(IN([KdNr] , kunden[KdNr]))

Solved Solved
0 2 119
1 ACCEPTED SOLUTION

Steve
Platinum 4
Platinum 4
NOT(
  IN(
    [KdNr],
    SELECT(
      kunden[KdNr],
      ([_ROWNUMBER] <> [_THISROW].[_ROWNUMBER])
    )
  )
)

View solution in original post

2 REPLIES 2

Steve
Platinum 4
Platinum 4
NOT(
  IN(
    [KdNr],
    SELECT(
      kunden[KdNr],
      ([_ROWNUMBER] <> [_THISROW].[_ROWNUMBER])
    )
  )
)

Thanks a lot!

Top Labels in this Space