This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
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
Solved! Go to Solution.
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
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi @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
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsCheck out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 36 | |
| 33 | |
| 26 | |
| 24 | |
| 17 |
| User | Count |
|---|---|
| 67 | |
| 49 | |
| 32 | |
| 27 | |
| 22 |