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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

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
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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