I have a Powerapp form tied to a sharepoint list with a required field called Services. The datacard receives its data from a choice list item which I deleted and instead created checkboxes. The card has the following update formula to track the selected choices to submit back to the Sharepoint list item Services. However, this required field does not generate an error when none of the checkboxes are selected. I feel the following "Update" formula may be the cause of the problem as I'm not too familiar with all the functions yet
ForAll(
Split(Concatenate(
If(chkAccounting.Value, chkAccounting.Text & ",", ""),
If(chkAudit.Value, chkAudit.Text & ",", ""),
If(chkConsulting.Value, chkConsulting.Text & ",", ""),
If(chkCompil.Value, chkCompil.Text & ",", ""),
If(chkIsIt.Value, chkIsIt.Text & ",", ""),
If(chkLit.Value, chkLit.Text & ",", ""),
If(chkRev.Value, chkRev.Text & ",", ""),
If(chkTax.Value, chkTax.Text, "")
),
","
),
{Value: Result}
)
Any help is greatly appreciated. Thanks!