Forum Discussion
Anonymous
5 years agoNot applicable
Card shows multiple selections rather than just one
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 ...
- 5 years ago
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.
v-xulin-mstf
Community Support
5 years agoHi 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.