Restrict duplication on the same date and allow saving after editing

Hello, I ask you for help with a formula, I am using this formula NOT(IN([_THIS], SELECT(Aduanas[N VUELO], [FECHA] = TODAY()))) to Restrict duplicate on the same date but when editing and saving again it does not allow me.
What formula can I use?

Solved Solved
0 5 283
1 ACCEPTED SOLUTION

Steve
Platinum 4
Platinum 4

Try:

NOT(
  IN(
    [_THIS],
    SELECT(
      Aduanas[N VUELO],
      AND(
        ([FECHA] = TODAY()),
        ([_ROWNUMBER] <> [_THISROW].[_ROWNUMBER])
      )
    )
  )
)

View solution in original post

5 REPLIES 5
Top Labels in this Space