How to Get Dropdown Selected Value in Power Apps? [2 Different Ways]

While working with a Power Apps application, I had to show every record detail when a user selected an item from the dropdown control.

In this Power Apps article, I will explain how to get dropdown selected value in Power Apps with various examples like:

  • Display Power Apps dropdown selected value in a Text box
  • Get Power Apps dropdown selected value record details

Get Dropdown Selected Value in Power Apps

Let me show you how to display the Power Apps dropdown selected value in a text input control.

I have a SharePoint List [Patient Tracker]. This list contains the fields below.

Column NameData Type
Patient IDIt is a default single line of text; I just renamed it as “Patient ID”
NameA single line of text
DOBDate and time
Contact NumberNumber
Power Apps Dropdown Selected Value To Text

In Power Apps, there is a Dropdown control and a Text input control. I have bound the SharePoint text field [Name] values in the dropdown.

When a user selects a specific value from the dropdown control, the selected value will be displayed on the text label, as in the screenshot below.

Power Apps Selected Dropdown Value To Text

To achieve the above example, follow the below-mentioned steps. Such as:

1. 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
How to Display the Power Apps Dropdown Selected Value to Text

2. Then, insert a Text input control and set its Default property to the code below:

Default = drp_PatientName.Selected.Name

Where,

  • drp_PatientName = Power Apps Dropdown Name
Power Apps Dropdown Control Selected Value To Text

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

Get Dropdown Selected Value in Power Apps

This is how to display the Power Apps dropdown selected value in a text input control.

Get Power Apps dropdown selected value record details

Let’s see how to display the Power Apps dropdown selected value records to text.

In Power Apps, there is a Dropdown control and three Text input controls. The dropdown control has patient ID values.

When a user selects a specific value from the dropdown, the text inputs controls will display selected value records, as in the screenshot below.

Power Apps dropdown selected value to text input

To do so, follow the below steps. Such as:

1. 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
Power Apps selected dropdown value to text input

2. 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
Power Apps dropdown control selected value to text input

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

Get Dropdown Selected Value in Power Apps

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 a Power Apps text input control. Also, we discussed how to display dropdown-selected record details in Power Apps.

You may also like:

>

Build a High-Performance Project Management Site in SharePoint Online

User registration Power Apps canvas app

DOWNLOAD USER REGISTRATION POWER APPS CANVAS APP

Download a fully functional Power Apps Canvas App (with Power Automate): User Registration App

Power Platform Tutorial FREE PDF Download

FREE Power Platform Tutorial PDF

Download 135 Pages FREE PDF on Microsoft Power Platform Tutorial. Learn Now…