Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
bslozano
Frequent Visitor

Drop Down list for column in table

Hello!

Is there a way to have a drop down for a column in a table? For example, I have a list of about 10 different employees and I want to be able to choose one on the New Employee column. There will also be a distance column, and basically this would change when a different employee is chosen. So say I choose "John" as the employee from drop down, his distance would show in the distance column. Are voth of these things possible?

 

bslozano_0-1696945429833.png

 

2 ACCEPTED SOLUTIONS
Ritaf1983
Super User
Super User

Hi @bslozano 
According to your description, you need to use a slicer.

Please refer to the linked guide:

https://www.spguides.com/add-a-dropdown-slicer-in-power-bi/

If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly

Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile

View solution in original post

Anonymous
Not applicable

Hi @bslozano ,

It sounds like you want to create a dynamic table that changes based on the selection of a drop down menu. You can try to use a slicer visual and a measure.

Drag and drop the Employee field from your source table to the slicer. This will create a drop down menu with the list of employees.

Next, you need to create a measure that calculates the distance for the selected employee. You can use the SELECTEDVALUE function to get the value of the slicer.

Distance =
CALCULATE (
    SUM ( 'Table'[Distance] ),
    'Table'[Employee] = SELECTEDVALUE ( 'Table'[Employee] )
)

 

How to Get Your Question Answered Quickly 

 

If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .

 

Best Regards
Community Support Team _ Rongtie

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

 

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @bslozano ,

It sounds like you want to create a dynamic table that changes based on the selection of a drop down menu. You can try to use a slicer visual and a measure.

Drag and drop the Employee field from your source table to the slicer. This will create a drop down menu with the list of employees.

Next, you need to create a measure that calculates the distance for the selected employee. You can use the SELECTEDVALUE function to get the value of the slicer.

Distance =
CALCULATE (
    SUM ( 'Table'[Distance] ),
    'Table'[Employee] = SELECTEDVALUE ( 'Table'[Employee] )
)

 

How to Get Your Question Answered Quickly 

 

If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .

 

Best Regards
Community Support Team _ Rongtie

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

 

Ritaf1983
Super User
Super User

Hi @bslozano 
According to your description, you need to use a slicer.

Please refer to the linked guide:

https://www.spguides.com/add-a-dropdown-slicer-in-power-bi/

If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly

Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Kudoed Authors