Hi every one.
I have a button I only want to become visible when all text labels have "yes" inputted. (please see image below)
If there is anything else in these text boxes I would like the button to not be visible.
Any help on this would be great!
Solved! Go to Solution.
Set the Visible property of the button to:
If(
(Label1.Text = "Yes" && Label2.Text = "Yes" && Label3.Text = "Yes"),
true, false)
This will say to only show if all criteria is met.
Set the Visible property of the button to:
If(
(Label1.Text = "Yes" && Label2.Text = "Yes" && Label3.Text = "Yes"),
true, false)
This will say to only show if all criteria is met.
Thank you so much! 😁
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
User | Count |
---|---|
199 | |
71 | |
51 | |
42 | |
30 |
User | Count |
---|---|
268 | |
118 | |
94 | |
90 | |
81 |