Hi @dave8 ,
You could achieve your validation logic within the OnSelect property of the "Submit" button:
If(
Checkbox1.Value = false && Checkbox2.Value = false && Checkbox3.Value = false,
Notify("Please check one Checkbox at least for submitting your form data", NotificationType.Error),
SubmitForm(EditForm1)
)
When you press "Submit" button, above validation logic would be executed.
In addition, you should also need to bind the Field1 to any combination of these three Checkboxes. Please set the Update property of the Field1 data card in your Edit form to following:
If(
Checkbox1.Value,
Checkbox1.Text & ";",
Blank()
) &
If(
Checkbox2.Value,
Checkbox2.Text & ";",
Blank()
) &
If(
Checkbox3.Value,
Checkbox3.Text & ";",
Blank()
)
Note: If you use Patch function to submit your data back to Excel table, you could also use above formula to assign value to the Field1.
Best regards,