web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / IfError with checkboxes
Power Apps
Answered

IfError with checkboxes

(0) ShareShare
ReportReport
Posted on by Microsoft Employee

Hello,

 

I am trying to create a button which will display an error message when a single or multiple checkboxes haven't been selected inside of a gallery. I tried using:

IfError(Checkbox7_2.Value=false, Notify("Question Unanswered",NotificationType.Error))

 

But i haven't been able to get it to work.

Categories:
I have the same question (0)
  • xyzzyx666 Profile Picture
    170 on at

    Hi @Anonymous,

     

    Do you want the button to show Error Information if the checkbox not be selected?

    I think you could change IfError to If:

    If(Checkbox7_2.Value=false, Notify("Question Unanswered",NotificationType.Error)).

     

    I have tested as next screenshot:

    Button1.OnSelect:If(Checkbox1.Value=false,Notify("Question Unanswered",NotificationType.Error))

    20190107test4.png

    And the result is if the checkbox not be selected,it will show the error information:

    20190107test4.gif

  • Community Power Platform Member Profile Picture
    Microsoft Employee on at

    Hey, 

     

    Thanks a bunch for that example it fixed my issue, but is it possible for that to work with multiple checkboxes inside of a gallery.

  • xyzzyx666 Profile Picture
    170 on at

    Hi @Anonymous,

     

    Do you mean the multiple checkboxes not be seleted the button should show error information?

    I have used two checkboxes to test:

    Button1.OnSelect:

    If(Checkbox1.Value=false && Checkbox2.Value=false,Notify("Question Unanswered",NotificationType.Error))

    The screenshot as:

    20190108test1.png

  • Verified answer
    v-xida-msft Profile Picture
    Microsoft Employee on at

    HI @Anonymous,

    Do you want to display the error message when multiple Checkboxes have not been selected within your Gallery?

    Based on the needs that you mentioned, I think the CountRows function and Filter function could achieve your needs.

    I have made a test on my side, please take a try with the following workaround:3.JPG

    Set the OnSelect property of the "Detect" button to following:

    If(
    CountRows(Filter(Gallery1.AllItems, Checkbox1.Value=true)) <= 1, /* <- Checkbox1 represents the Checkbox control within my Gallery*/
    Notify("Question Unanswered", NotificationType.Error)
    )

    On your side, you should type:

    If(
    CountRows(Filter(YourGallery.AllItems, Checkbox7_2.Value=true)) <= 1, /* <- Checkbox7_2 represents the Checkbox control within your Gallery*/
    Notify("Question Unanswered", NotificationType.Error)
    )

    In addition, if you want to display an error message when a single or multiple checkboxes haven't been selected inside your gallery, please take a try with the following formula:

    If(
    CountRows(Filter(YourGallery.AllItems, Checkbox7_2.Value=true)) < 1, /* <- Checkbox7_2 represents the Checkbox control within your Gallery*/
    Notify("Question Unanswered", NotificationType.Error)
    )

    Or

    If(
    CountRows(Filter(YourGallery.AllItems, Checkbox7_2.Value=true)) = 0, /* <- Checkbox7_2 represents the Checkbox control within your Gallery*/
    Notify("Question Unanswered", NotificationType.Error)
    )

    Please check the attached GIF screenshot for more details:

     

    Best regards,

    Kris

    Test.gif

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.

Helpful resources

Quick Links

Season of Sharing Community Challenge Winners!

Congratulations to our community stars!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the July Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 345 Most Valuable Professional

#2
11manish Profile Picture

11manish 207 Super User 2026 Season 2

#3
Mohsin Ali Profile Picture

Mohsin Ali 177

Last 30 days Overall leaderboard