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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hello All,
I am trying to show multiple selected value in a card by using the following DAX.
Solved! Go to Solution.
hI @ForgotID
CONCATENATEX has an optional order by parameter. Ensure that your table has such a column.
FSC_Periods =
CALCULATE (
CONCATENATEX (
DISTINCT ( Metrics[FSC_PERIOD_NAME] ),
Metrics[FSC_PERIOD_NAME],
", ",
CALCULATE ( SELECTEDVALUE ( Metrics[FSC_PERIOD_NAME_SORT] ) ) -- custom sort-by column in your table
)
)
It worked. Thank you. Accepting it as solution!
@ForgotID It sounds like you need to sort your FSC_PERIOD_NAME by the Date column within your table, which should also be sorted.
Thank you for your input