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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I have the following dax and I'm trying to sort (DESC) by "Transfers_X" (Total Transfer_X), but I'm not sure what it's doing as it's not being sorted by this, nor is it being sorted alphabetically by "Transfer Destination"
Top_10_Transfer_Destinations_LIst =
VAR Top10Destinations =
TOPN (
10,
SUMMARIZE (
DD_TRACE,
DD_TRACE[Transfer Destination],
"Total Transfer_X", SUMX (
FILTER (
RELATEDTABLE('TRANFERS_TRENDS'),
NOT(ISBLANK('TRANFERS_TRENDS'[Transfers_X]))
),
'TRANFERS_TRENDS'[Transfers_X]
)
),
[Total Transfer_X], DESC
)
RETURN
CONCATENATEX ( Top10Destinations, DD_TRACE[Transfer Destination] & ": " & [Total Transfer_X], UNICHAR(10))
Solved! Go to Solution.
Hi,
Does this work?
Top_10_Transfer_Destinations_LIst =
VAR Top10Destinations =
TOPN (
10,
SUMMARIZE (
DD_TRACE,
DD_TRACE[Transfer Destination],
"Total Transfer_X", SUMX (
FILTER (
RELATEDTABLE('TRANFERS_TRENDS'),
NOT(ISBLANK('TRANFERS_TRENDS'[Transfers_X]))
),
'TRANFERS_TRENDS'[Transfers_X]
)
),
[Total Transfer_X], DESC
)
RETURN
CONCATENATEX ( Top10Destinations, DD_TRACE[Transfer Destination] & ": " & [Total Transfer_X], UNICHAR(10),[Total Transfer_X])
Added the measure after the UNICHAR() function.
Hi,
Does this work?
Top_10_Transfer_Destinations_LIst =
VAR Top10Destinations =
TOPN (
10,
SUMMARIZE (
DD_TRACE,
DD_TRACE[Transfer Destination],
"Total Transfer_X", SUMX (
FILTER (
RELATEDTABLE('TRANFERS_TRENDS'),
NOT(ISBLANK('TRANFERS_TRENDS'[Transfers_X]))
),
'TRANFERS_TRENDS'[Transfers_X]
)
),
[Total Transfer_X], DESC
)
RETURN
CONCATENATEX ( Top10Destinations, DD_TRACE[Transfer Destination] & ": " & [Total Transfer_X], UNICHAR(10),[Total Transfer_X])
Added the measure after the UNICHAR() function.
Yes it did, thank you so much. Such a simple change. Very much appreciated.
You are welcome.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 43 | |
| 42 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 190 | |
| 122 | |
| 96 | |
| 66 | |
| 47 |