Hello Power Apps Community,
What is the best scenario to auto-fill a textbox from either a selected radio or Combo Box value?
Textbox Default:
Radio1.Selected.Value & "%"
Combo Items:
["25%","50%","75%"]
As always, thank you in advance.
Solved! Go to Solution.
If my understanding is correct you are saying that if it is other pull from the combo box but if it is Yes make it 100 🙂
in that case the logic is this for the text box instead of Radio1.Selected.Value & "%" do :
If(
Radio1.Selected.Item = "Other",
ComboBox1.Selected.Value,
Radio1.Selected.Value & "%"
)
you will need to replace ComboBox1 with the name of you combobox.
If you appreciated my comments/responses please be sure to Like/Kudo them it really does make me smile 🙂 !
Are you asking what looks better if so personally I like the idea of using combobox for this 🙂
If you appreciated my comments/responses please be sure to Like/Kudo them it really does make me smile 🙂 !
Hello @AJ_Z ,
My apologies. It was late when I posted this. Thank you for the comments. 😁
What I am trying to accomplish is when a user selects Yes, No, or N/A on the radio button or the [Other]- (Combo Box), it will auto-fill the text box.
I hope I have explained myself well,
Radio Button Item:
Table({Item:"Yes",Value:100},{Item:"No"},{Item:"N/A"},{Item:"Other"})
Combo Box Item:
["25%","50%","75%"]
Thank you in advance.
If my understanding is correct you are saying that if it is other pull from the combo box but if it is Yes make it 100 🙂
in that case the logic is this for the text box instead of Radio1.Selected.Value & "%" do :
If(
Radio1.Selected.Item = "Other",
ComboBox1.Selected.Value,
Radio1.Selected.Value & "%"
)
you will need to replace ComboBox1 with the name of you combobox.
If you appreciated my comments/responses please be sure to Like/Kudo them it really does make me smile 🙂 !
I am delighted to have been able to help 🙂
If you appreciated my comments/responses please be sure to Like/Kudo them it really does make me smile 🙂 !
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 |
---|---|
183 | |
46 | |
46 | |
34 | |
33 |
User | Count |
---|---|
254 | |
84 | |
78 | |
68 | |
67 |