Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
Hi all,
I have a dashboard that has data that looks some this:
Alphabet | Number |
A | 1 |
B | 1 |
C | 2 |
D | 2 |
In my dashboard, I have a card that displays the numbers and I have a filter that allows multiple selections so that multiple alphabets can be selected. Is it possible to write a DAX function for the card so that when there are multiple numbers let's say when A and C is selected, the card will display: Multiple numbers rather than just one? Thanks.
Solved! Go to Solution.
Hi @Anonymous
Create a measure as:
Measure = CONCATENATEX(
VALUES('Table'[Number]),
CALCULATE(
MAX('Table'[Number]),
'Table'[Alphabet] IN FILTERS('Table'[Alphabet])),","
)
Here is the output:
Here is the demo, please try it: Card shows multiple selections rather than just one
Best Regards,
Link
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous
Create a measure as:
Measure = CONCATENATEX(
VALUES('Table'[Number]),
CALCULATE(
MAX('Table'[Number]),
'Table'[Alphabet] IN FILTERS('Table'[Alphabet])),","
)
Here is the output:
Here is the demo, please try it: Card shows multiple selections rather than just one
Best Regards,
Link
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous , Create measure like these and use
Measure = if( countx(allselected(Table), Table[Alphabet]) >1, "Multiple Selected", "Single Selected")
Value selected
concatenatex(allselected(Table), Table[Alphabet] , " , ")
concatenatex(Table, Table[Alphabet], " , ")
Hi is it possible to show the number (i.e 1 or 2) instead of 'single selected'. Thanks
@Anonymous ,
this will give number
so use this
countx(allselected(Table), Table[Alphabet])
or create any combination
Measure =
var _cnt = countx(allselected(Table), Table[Alphabet])
return
if( _cnt >1, _cnt & "" , "Single Selected")
hi i realized that using countx is wrong as countx counts duplicates as well. Is there a way so that even though A and B are selected, the card will display "1" instead. Thanks
Hi distinctcount works perfectly but i am still unsure on how to get the specific number instead of single select
i want to display the number not number of alphabets
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
72 | |
71 | |
70 | |
43 | |
42 |
User | Count |
---|---|
49 | |
42 | |
29 | |
28 | |
27 |