Happy Monday, Power Apps Community,
What I am trying to achieve is when a user selects the button (Mark all N/A). It will autofill in all the radio buttons that = (N/A) in the gallery. Shooting a blank today.
What would be the best way to accomplish it?
Items Property:
Table({Item:"Yes",Value:100},{Item:"No"},{Item:"N/A"},{Item:"Other"})
Thank you in advance.
Solved! Go to Solution.
Hi @oappdev ,
Set a Variable OnSelect of the button
UpdateContext({varNA: true})
and the Default of your Radio Buttons
If(
varNA,
"N/A"
)
also at screen OnVisible
UpdateContext({varNA: false})
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps
Hi @oappdev ,
Set a Variable OnSelect of the button
UpdateContext({varNA: true})
and the Default of your Radio Buttons
If(
varNA,
"N/A"
)
also at screen OnVisible
UpdateContext({varNA: false})
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
185 | |
53 | |
41 | |
36 | |
31 |
User | Count |
---|---|
241 | |
74 | |
71 | |
69 | |
65 |