Hello together i have a little question on my PowerApps.
In my PowerApps I have ComBox field with 3 possible choices.
And I am trying to set a variable based on the ComBox
set (varRequest;ComBox1.SelectedItems.Value)
is the solution i have right now but i get this error message
Calling an unknown or unsupported function
i would be greatfull for any help 🙂
Solved! Go to Solution.
Hello @Ömer ,
You are on the right path. Please change you code to
Set(
varRequest;
ComBox1.Selected.Value
)
and put it inside the OnSelect property of your button. After that change the textinput's Default property (or if you are using a label, the Text property) to varRequest.
Let me know if this works for you.
Maybe more information i want to build a button when i cklick on it the choice of the Combox is transferd to the textinput or label tried with both
Hello @Ömer ,
You are on the right path. Please change you code to
Set(
varRequest;
ComBox1.Selected.Value
)
and put it inside the OnSelect property of your button. After that change the textinput's Default property (or if you are using a label, the Text property) to varRequest.
Let me know if this works for you.
Thank you i have put the code into the button and then I set the name of the variable into the textfield like you said now it works 🙂
User | Count |
---|---|
260 | |
109 | |
93 | |
57 | |
41 |