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 / Submit botton visible ...
Power Apps
Answered

Submit botton visible if default value is 100%

(0) ShareShare
ReportReport
Posted on by Microsoft Employee

Dear all,

 

I am making a form in powerapps with a few required fields (text fields, dropdowns etc.)

And I want to make the Submit button visible if all fields are filled in, this worked for now with the if(isblank) formula.

 

But right now I have one Datacardvalue (from SharePoint) which has a default value where I want to calculate 4 cells with a sum like this: "Sum(DataCardValue23+DataCardValue24+DataCardValue25+DataCardValue26)". My datacardvalue gets a total of all 4 fields which should be 100%.

 

But right now I need to create an IF formula that will be true if my datacardvalue=100% (or just 100), but should be invisible if the value is 101 or 99, etc.

 

Could anyone help me with this formula?

 

Thanks!

 

Categories:
I have the same question (0)
  • Verified answer
    WarrenBelz Profile Picture
    156,419 Most Valuable Professional on at

    Hi @Anonymous ,

    On the submit button Visible property

    Value(DataCardValue23.Text) + 
    Value(DataCardValue24.Text) + 
    Value(DataCardValue25.Text) +
    Value(DataCardValue26.Text) = 100

    If the formula is true (it equals 100) the card will show, otherwise it will not.

     

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more. It also closes the item.

  • Community Power Platform Member Profile Picture
    Microsoft Employee on at

    Hi @WarrenBelz ,

     

    Thanks alot that worked!

    I have just one other question what if I need multiple conditions to let my submit button be visible.

     

    Like:

    Value(DataCardValue23.Text) + 
    Value(DataCardValue24.Text) + 
    Value(DataCardValue25.Text) +
    Value(DataCardValue26.Text) = 100

    and 

    Value(DataCardValue14.text) > 0

    (maybe even more conditions)

     

    How can I link/combine them in one formula?

     

    Many thanks!

    Ramon

  • Verified answer
    Phydax Profile Picture
    40 on at

    Hi @Anonymous ,

    In the 'Visible' attribute you can use an 'If' condition tha works like follows : If(condition, what happens if true, what happens if false)

    In your case you could do something like :

    If((Value(DataCardValue23.Text) + Value(DataCardValue24.Text) + Value(DataCardValue25.Text) + Value(DataCardValue26.Text) = 100) && Value(DataCardValue14.text) > 0 , true, false)

    Everything previous the first comma is your condition and will return true if both parts before and after the '&&' are true. In which case it will set the Visible attribute to true (because it is what is specified after the first comma). If you want to check even more values, you just have to add '&& ' and another condition to be verified in the condition part of your formula.


     
  • Community Power Platform Member Profile Picture
    Microsoft Employee on at

    Hi @Phydax,

    Thanks, the formula works now.

    And thanks for the explanation, that makes it clear:)

     

    Many thanks you too for your fast responses!

     

    Ramon

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 355 Most Valuable Professional

#2
11manish Profile Picture

11manish 209 Super User 2026 Season 2

#3
MS.Ragavendar Profile Picture

MS.Ragavendar 150 Super User 2026 Season 2

Last 30 days Overall leaderboard