Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello
So I have a card visualization that displays the "Account name" when selected in a matrix. But if you drill down the matrix also displays invoice number. FYI the matrix only has 2 rows; Account name and Invoice number.
Currently I have the card using this measure but it only works for the first row, Account name:
FlagsSelected = IF ( ISFILTERED ('Table'[AccountName]),
CONCATENATEX(ALLSELECTED(Table[AccountName]), Table[AccountName], ", ")
,
"No Account Selected"
)
It only works for Account name. If I drill down to invoice number and select a respective number it wont display in the card visualization.
How do I alter my measure to work for both in the matrix.
And If I add a 3rd 4th row potentially...
Thanks
Solved! Go to Solution.
Hi @AA622
Try this measure
FlagsSelected =
SWITCH (
TRUE (),
ISFILTERED( 'Table'[InvoiceNumber] ),
CONCATENATEX (
ALLSELECTED ( 'Table'[InvoiceNumber] ),
'Table'[InvoiceNumber],
", "
),
ISFILTERED ( 'Table'[AccountName] ),
CONCATENATEX (
ALLSELECTED ( 'Table'[AccountName] ),
'Table'[AccountName],
", "
),
"No Account Selected"
)
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Hi @AA622
Try this measure
FlagsSelected =
SWITCH (
TRUE (),
ISFILTERED( 'Table'[InvoiceNumber] ),
CONCATENATEX (
ALLSELECTED ( 'Table'[InvoiceNumber] ),
'Table'[InvoiceNumber],
", "
),
ISFILTERED ( 'Table'[AccountName] ),
CONCATENATEX (
ALLSELECTED ( 'Table'[AccountName] ),
'Table'[AccountName],
", "
),
"No Account Selected"
)
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Extend your measure to check for the scope - ISINSCOPE can tell you where in the hierarchy you are.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 52 | |
| 51 | |
| 35 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 92 | |
| 75 | |
| 41 | |
| 26 | |
| 25 |