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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Multi-row card to display current selections

Hi,

 

I am using a Multi-row card to display the current selections for the selections made in the report level filter.

 

I had done this for another report earlier as well and it worked absolutely fine.

 

Today, when I am using the same multi-row card, I am getting records in the card with a scrollbar as compared to "No selections made" when no value is selected or the selected value when a selection is made.

 

Not sure what exactly is happening here.

Please help.

 

Thanks,

Vishy

1 ACCEPTED SOLUTION
Anonymous
Not applicable

HI @Anonymous .

You can use below measure to check selection status.

Measure =
IF (
    COUNTROWS ( ALLSELECTED ( Table[Column] ) )
        <> COUNTROWS ( ALL ( Table[Column] ) ),
    CONCATENATEX ( ALLSELECTED ( Table[Column] ), [Column], "," ),
    "Unselected"
)

Notice: current power bi not able to check the difference between allselect and unselect, so I add condition to recognize these two scenarios as unselected.

Regards,

Xiaoxin Sheng

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

HI @Anonymous .

You can use below measure to check selection status.

Measure =
IF (
    COUNTROWS ( ALLSELECTED ( Table[Column] ) )
        <> COUNTROWS ( ALL ( Table[Column] ) ),
    CONCATENATEX ( ALLSELECTED ( Table[Column] ), [Column], "," ),
    "Unselected"
)

Notice: current power bi not able to check the difference between allselect and unselect, so I add condition to recognize these two scenarios as unselected.

Regards,

Xiaoxin Sheng

Anonymous
Not applicable

Thanks a lot Xiaoxin, that worked. Just for my info, is it a change in Power BI that current selections have to be handled this way using a measure?

 

As I mentioned before, for an earlier report, I did not create any measure just used multi-row card and dragged the filter fields same as the Reporting Level filters and it worked fine.

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors