@Anonymous
Ah, SharePointIntegration!!
So in this case, yes, you cannot alter the save button, but you can alter its behaviour.
In the OnSave action of the SharePointIntegration control, you can change the formula to the following:
If(EndDate.SelectedDate < FinishDate.SelectedDate,
Notify("Check Dates"),
SubmitForm(SharePointForm1))
This will check the two dates (again, you need to adjust the names to reflect your form controls) and if they are invalid, then it will Notify the user about the issue (you can do other things if needed).
If the dates are good, then it will do the normal SubmitForm function.