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
oakfootballclub
Helper IV
Helper IV

how to display multiple selection values in table

I created a measure, it fails to display all the selected value, how to solve it?

oakfootballclub_0-1718704191104.png

data of this table:

oakfootballclub_1-1718704221044.png

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @oakfootballclub 

 

The ALLSELECTED() function returns a table and the measure can only return a value, that's why the visual can not display.

Maybe you can try to use the CONCATENATEX() function to get the outcome, here I create a set of sample data:

vzhengdxumsft_0-1718763327955.png

Then I create a measure:

MEASURE =
VAR _selectedValues =
    ALLSELECTED ( 'Table'[Values] )
RETURN
    CONCATENATEX ( _selectedValues, [Values], " " )

The result is as follow:

vzhengdxumsft_1-1718763450829.png

 

 

Best Regards

Zhengdong Xu
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

1 REPLY 1
Anonymous
Not applicable

Hi @oakfootballclub 

 

The ALLSELECTED() function returns a table and the measure can only return a value, that's why the visual can not display.

Maybe you can try to use the CONCATENATEX() function to get the outcome, here I create a set of sample data:

vzhengdxumsft_0-1718763327955.png

Then I create a measure:

MEASURE =
VAR _selectedValues =
    ALLSELECTED ( 'Table'[Values] )
RETURN
    CONCATENATEX ( _selectedValues, [Values], " " )

The result is as follow:

vzhengdxumsft_1-1718763450829.png

 

 

Best Regards

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

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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.