Announcements
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
@Rogermiddleton
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
Hi @rsaikrishna ,
Thanks a lot!!
Regards,
Roger
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our 2026 Super Users!
Congratulations to our 2025 community superstars!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
WarrenBelz 545 Most Valuable Professional
Haque 314
Kalathiya 234 Super User 2026 Season 1