Hi All,
I am experiencing some difficulties with an SP field date and time in the form in PowerApps.
I have a date and time field in my form as mandatory/required. I have a submit button and I want it to be disabled if the date Datacards have not been selected/filled.
When trying the formula below on the DisplayMode of the button, the submit button is in edit mode as soon as I fill out the other required fields without even choosing date and time:
If(
VideoRecordings_Frm_1.Valid,
DisplayMode.Edit,
DisplayMode.Disabled
)
I have also tried the IsBlank formula, it works with other fields, however, the button never becomes editable with the date and time field.

Thank you for any advice!