Do you want to get the dropdown selected value in Power Apps? This Power Apps tutorial explains how to get dropdown selected value in Power Apps.
Here, I will show you how to display the Power Apps dropdown selected value to text with two examples. Such as:
- How to display the Power Apps dropdown selected value to text
- Power Apps dropdown selected value records to text
Get Dropdown Selected Value in Power Apps
Here, I will show you how to display the Power Apps dropdown selected value to text.
1. I have a SharePoint Online List, i.e., [Patient Tracker]. This list contains the below fields.
Column Name | Data Type |
Patient ID | It is a default single line of text, I just renamed it as “Patient ID” |
Name | A single line of text |
DOB | Date and time |
Contact Number | Number |

2. In Power Apps, there is a Dropdown control and Text input control. In the dropdown, I have bineded the SharePoint text field [Name] values.
3. When a user selects a specific value from the dropdown control, it will display on the text label, as in the screenshot below.

To achieve the above example, follow the below-mentioned steps. Such as:
4. Open Power Apps -> Create a Power Apps canvas app -> Connect the SharePoint list to the app. Once you connect, it will look like the screenshot below.

5. Insert a Dropdown control [drp_PatientName] -> Set its Items property and select Value property as shown below.
Items = 'Patient Tracker'
Value = Name
Where,
- ‘Patient Tracker’ = SharePoint Online List
- Name = SharePoint Text Field

6. Then, insert a Text input and set its Default property to the code below.
Default = drp_PatientName.Selected.Name
Where,
- drp_PatientName = Power Apps Dropdown Name

7. Save, Publish, and Preview the app. The text input displays the value based on the dropdown selected value like below.

This is how to display the Power Apps dropdown selected value on the text input control.
Power Apps Dropdown Selected Value Records to Text
Let’s see how to display the Power Apps dropdown selected value records to text.
Example:
1. I will also take the same SharePoint Online list [Patient Tracker] for this example.
2. In Power Apps, there is a Dropdown control and three Text input controls. The dropdown control has patient ID values.
3. When a user selects a specific value from the dropdown, the text inputs controls will display selected value records, as in the screenshot below.

To do so, follow the below steps. Such as:
4. On the Power Apps Screen -> Insert a Dropdown control, set its Items property, and select Value as Title as shown below.
Items = 'Patient Tracker'
Value = Title
Where,
- ‘Patient Tracker’ = SharePoint Online List
- Title = SharePoint Text Column

5. Then, insert three Text input controls and set their Default properties as shown below.
Default = drp_Patient.Selected.Name //For Patient Name
Default = drp_Patient.Selected.DOB //For Patient Date Of Birth
Default = drp_Patient.Selected.'Contact Number' //For Patient Contact Number
Where,
- drp_Patient = Power Apps Dropdown Name
- Name, DOB, Contact Number = SharePoint List Fields

6. Save, Publish, and Preview the app. These text inputs display Patient Details based on the selected Patient ID from the dropdown below.

This is how to display the Power Apps dropdown value records on the text input controls.
Conclusion
In this tutorial, I have explained how to get a dropdown selected value in Power Apps and display it in a text. Also, I have shown how to bind selected record values to text in the Power Apps dropdown.
You may also like:
- How to Display SharePoint Person Column in Power Apps Dropdown?
- Set Power Apps Dropdown Values Based on Variable
- Convert Dropdown to Radio Button in Power Apps Form
- Display Column Names in Power Apps Dropdown

Preeti Sahu is an expert in Power Apps and has more than 6 years of experience working with SharePoint and the Power Platform. As a Power Platform expert for Power BI, Power Apps, Power Automate, Power Virtual Agents, and Power Pages, she is currently employed with TSinfo Technologies. She is the author of the book Microsoft Power Platform A Deep Dive. She also made a big technical contribution to SharePointDotNet.com in the form of articles on the Power Platform. She enjoys traveling and spending time with her family in her spare time.