Hi All,
In my form, I have a date and time picker (from a SP list) and I am trying to patch it.
This datacard is optional and my goal is to patch it only when the user selects date and time.
I am using the following formula to patch it:
IncidentTimeFrom:
If(
!IsBlank(DateValue(IncidentTimeFrom_DataCard3_1.DataField)),
DateValue5_1.SelectedDate +
Time(
Value(HourValue5_1.Selected.Value),
Value(MinuteValue5_1.Selected.Value),
0
)
)
If there is no date selected, this field is not patched, however, if the user selects the date, it is not patched either.
Any suggestions on what changes need to be made?
Your help is much appreciated!