I have a form in PowerApps that uses a dropdown list with pre-determined values. Below is how I'm getting the list of teams from my Sharepoint List:
Sort(
Filter(
Distinct(
ShowColumns(Teams,"Team")
,Team) , Result <> "Individual"),
Result, Ascending)
I also have a separate textbox where I'm trying to display the the chosen option from the dropdown list. So for example, if the user selects Team 1 from the dropdown list (without submitting the form) I want to display "Team 1" in the textbox. The problem is the codes below do not return anything. The formula bar says the result is Blank.
DataCardValue4.Selected.Result
DataCardValue4.SelectedText.Result
DataCardValue4.SelectedText.Value
Is there a way for me to display the chosen option in a separate textbox?