Hi @Labraham36 ,
When you refer to "entered before", is this contained in a List which also contains the user's details. If so, you would do a Lookup on the list on the OnChange of the Date Picker (note you will get a Delegation warning on this)
If(
!IsBlank(
LookUp(
YourListName,
UserField=User().FullName &&
Text(Self.SelectedDate,ShortDate)=Text(YourDateFiled,ShortDate),
).YourDateField
),
Notify("Date used previously,Error);
Reset(Self)
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.