
Announcements
Hi,
I would like to implement an if statement so if a checkbox is not ticked, the form is not submitted. I have tried this below but it doesn't work. Could someone advise please?
If(Checkbox1.value) = 0
Thanks in advance.
Hi @BS10
Try this
If(
Checkbox1.Value = false,
Notify("Please check the checkbox before submitting.", NotificationType.Error),
SubmitForm(Form); NewForm(Form)
)
Thanks!
If my response has been helpful in resolving your issue, I kindly request that you consider clicking "Accept as solution" and "giving it a thumbs up" as a token of appreciation.