@Iantaylor2050
My favorite way is to disable the Submit button until the user has input valid information in the form.
Put this code in the DisplayMode property of the Submit button
If(DataCardValue3.SelectedDate < MyDate, DisplayMode.Disabled, DisplayMode.Edit)
Then, to alert the user when an invalid date value was entered, put this code in the OnChange property of the DatePicker.
If(DataCardValue3.SelectedDate < MyDate, Notify("You cannot enter a past date", NotificationType.Error))
Finally, put this code in the OnSuccess property of the form to show that the record was successfully submitted
Notify("This record has been saved successfully", NotificationType.Success)
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."