The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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.
User | Count |
---|---|
78 | |
74 | |
42 | |
32 | |
28 |
User | Count |
---|---|
104 | |
93 | |
52 | |
50 | |
46 |