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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
zoltanm
Regular Visitor

Rule out multiple selection

Hi All,

I have a `matrix preview` table chart in my dashb. with MARKET_IDs in the column header, KPI_IDs in the row headers and with values.
My only request is to show only one Market at a time, so I added a slicer for the MARKET_IDs & turned on single selection

.But even now people can choose multiple Market ids in the slicer(with the ctrl button), then the matrix table shows - obviously - all the chosen markets in diff columns.

 

Is there a way to rule this out, and make the matrix chart to go blank, if multiple selection was made?

Rgrds,

Zoltan

1 ACCEPTED SOLUTION
MFelix
Super User
Super User

Hi @zoltanm,

 

How is your values in the matrix calculated trough a measure? If so you can probably change you measure to something like this:

 

 

Measure =
IF (
    CALCULATE (
        COUNT ( TABLE[MARKET_IDs] ) <> 1,
        ALLSELECTED ( TABLE[MARKET_IDS] )
    ),
    BLANK (),
    SUM ( TABLE[COLUMN] )
)

 The SUM ( TABLE[COLUMN] ) is the measure you want to show.

 

Regards,

MFelix

 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português





View solution in original post

2 REPLIES 2
MFelix
Super User
Super User

Hi @zoltanm,

 

How is your values in the matrix calculated trough a measure? If so you can probably change you measure to something like this:

 

 

Measure =
IF (
    CALCULATE (
        COUNT ( TABLE[MARKET_IDs] ) <> 1,
        ALLSELECTED ( TABLE[MARKET_IDS] )
    ),
    BLANK (),
    SUM ( TABLE[COLUMN] )
)

 The SUM ( TABLE[COLUMN] ) is the measure you want to show.

 

Regards,

MFelix

 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português





Thanks @MFelix, exactly what I was looking for!

Rgrds,

Zoltan

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.