Hello, I would like to know if it is possible to select different values in a form. I would like to know if it is possible to select different values in a form, because at the moment I have the impression that you can either display what you have selected or select all the text on the document.
I would like to be able to select the name of the person and then reselect a new value like the price.
Is this possible?
Solved! Go to Solution.
Here is what you can do.
In the "OnChange" property of the TextRecognizer control enter this
If(IsBlank(Name), Set(Name, TextRecognizer1.Selected.Text), Set(Price, TextRecognizer1.Selected.Text))
Then on the "Default" property of your Name text input enter
Name
on the "Default" property of your Price text input enter
Price
You can also add a button to reset selection with OnSelect property
Set(Name, Blank()); Set(Price, Blank())
Here is what you can do.
In the "OnChange" property of the TextRecognizer control enter this
If(IsBlank(Name), Set(Name, TextRecognizer1.Selected.Text), Set(Price, TextRecognizer1.Selected.Text))
Then on the "Default" property of your Name text input enter
Name
on the "Default" property of your Price text input enter
Price
You can also add a button to reset selection with OnSelect property
Set(Name, Blank()); Set(Price, Blank())
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.