We have a Form and inside the form we have 2 fields; Number field + DateTime field which connect to a SharePoint list, now inside the 2 data-cards i provided these 2 formulas to either submit the selected value or submit Blank()
If(Value(NumberOfInstallments.Selected.Value) >= 4,DataCardValue70.SelectedDate,Blank())
If(Value(NumberOfInstallments.Selected.Value) >= 4,Value(DataCardValue69.Text),Blank())
now even if this condition is false (Value(NumberOfInstallments.Selected.Value) >= 4) the value inside SharePoint will not be null... any advice? seems the Update property does not like the Blank() value? to submit the form i am using the buil-in function SubmitForm()..
Thanks