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 / enable next button onl...
Power Apps
Answered

enable next button only once all radio buttons are selected

(0) ShareShare
ReportReport
Posted on by 4

Hi, i am trying to disable the next button until all radio buttons are selected (either yes or no) but im struggling to get this to work. in DisplayMode i have If(!IsBlank(Radio2.Selected.Value) &&!IsBlank(Radio3.Selected.Value) &&!IsBlank(Radio1.Selected.Value), Navigate(varTabSelected,1.1),Notify("Please ensure you answer all questions",NotificationType.Error))

 

what am i doing wrong? 😞

Categories:
I have the same question (0)
  • SpongYe Profile Picture
    5,715 Super User 2026 Season 1 on at

    Hi @PurpleHaze 

     

    Try this code where I added DisplayMode.Disabled:

     

     

    If(
     !IsBlank(Radio1.Selected.Value) && 
     !IsBlank(Radio2.Selected.Value) && 
     !IsBlank(Radio3.Selected.Value),
     Navigate(varTabSelected,1.1),
     Notify("Please ensure you answer all questions", NotificationType.Error); 
     DisplayMode.Disabled
    )

     

  • PurpleHaze Profile Picture
    4 on at

    Thanks @SpongYe its still giving me errors and now just lets me move on to the next tab without answering the questions.. 😥

  • Verified answer
    WiZey Profile Picture
    3,023 Moderator on at

    Hello @PurpleHaze ,

     

    It's probably giving you an error because you're not providing a "DisplayMode" in all cases in your "If()" statement. 

     

    Adding to @SpongYe formula, this one below should work:

     

    If(
     !IsBlank(Radio1.Selected.Value) && 
     !IsBlank(Radio2.Selected.Value) && 
     !IsBlank(Radio3.Selected.Value),
     DisplayMode.Edit, 
     DisplayMode.Disabled
    )
    
    And add the code below in the OnSelect of your button:
    
    Navigate(varTabSelected,1.1)

     

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

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Leaderboard > Power Apps

#1
Haque Profile Picture

Haque 103

#2
WarrenBelz Profile Picture

WarrenBelz 82 Most Valuable Professional

#3
wolenberg_ Profile Picture

wolenberg_ 67 Super User 2026 Season 1

Last 30 days Overall leaderboard