Hi everyone,
I have a screen in my app with 7 checkboxes. I want to have a button visible when all boxes are checked. So i got the formula working with 1 checkbox, but don't know how to do it with multiple boxes)
If(Checkbox1.Value=true;true;false)
Hope you can help.
Kind regards,
Roger Middleton
You just need to use logical operator && between the check box values to check multiple conditions.
Checkbox.Value returns boolean. So, you do not need to compare with true value.
You can use following formula:
If(Checkbox1.Value && Checkbox2.Value && Checkbox3.Value && Checkbox4.Value && Checkbox5.Value && Checkbox6.Value && Checkbox7.Value;true,false)
Regards
Krishna Rachakonda
WarrenBelz
791
Most Valuable Professional
MS.Ragavendar
410
Super User 2025 Season 2
mmbr1606
275
Super User 2025 Season 2