Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
Hi All,
I want to set defaul color for team (left chart - number of vacancies per team) and accounts related to that team (right chart - list of accounts with number of vacancies per account) based on rank (e.g. using rankx based on amount of vacancies) or based on some value (e.g. create manual table with index for for each team).
I've managed to create rankx and use it in conditional formatting but it works only for left chart and fails on right and I'm not sure if this is correct variant.
How I can change my measure or maybe there is another way to do this formatting? For rank I used RANKX(ALL('dwh DimAccount'[Team]), [# of Vacancies], ,DESC)
Solved! Go to Solution.
Hi @bsas ,
I created some data:
Table1:
Table2:
Here are the steps you can follow:
1. Create calculated table.
Slice = DISTINCT('Table1'[date])
2. Create measure.
sortby_un =
var _select=SELECTEDVALUE('Slice'[date])
return
RANKX(FILTER(ALLSELECTED('Table2'),'Table2'[date]=_select),CALCULATE(SUM('Table2'[amount])),,DESC)
sortby_amount =
var _select=SELECTEDVALUE('Slice'[date])
return
RANKX(FILTER(ALLSELECTED('Table1'),'Table1'[date]=_select),CALCULATE(SUM('Table1'[AMOUNT])),,DESC)
3. Change [Team]--Axis, [date]—Legend, [AMOUNT]—Values,[ sortby_amount]—Tooltips in Table 1, and [un]--Axis, [date]—Legend, [amount ]—Values, [sortby_un]—Tooltips
4. In the two visual objects, select the ellipsis and set Sort by-[sortby_amount] and Sort by-[sortby_un]
5. Result:
Both visual objects are automatically sorted according to measure
If it does not meet your expected results, can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @bsas ,
I created some data:
Table1:
Table2:
Here are the steps you can follow:
1. Create calculated table.
Slice = DISTINCT('Table1'[date])
2. Create measure.
sortby_un =
var _select=SELECTEDVALUE('Slice'[date])
return
RANKX(FILTER(ALLSELECTED('Table2'),'Table2'[date]=_select),CALCULATE(SUM('Table2'[amount])),,DESC)
sortby_amount =
var _select=SELECTEDVALUE('Slice'[date])
return
RANKX(FILTER(ALLSELECTED('Table1'),'Table1'[date]=_select),CALCULATE(SUM('Table1'[AMOUNT])),,DESC)
3. Change [Team]--Axis, [date]—Legend, [AMOUNT]—Values,[ sortby_amount]—Tooltips in Table 1, and [un]--Axis, [date]—Legend, [amount ]—Values, [sortby_un]—Tooltips
4. In the two visual objects, select the ellipsis and set Sort by-[sortby_amount] and Sort by-[sortby_un]
5. Result:
Both visual objects are automatically sorted according to measure
If it does not meet your expected results, can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
User | Count |
---|---|
115 | |
95 | |
87 | |
76 | |
65 |
User | Count |
---|---|
138 | |
113 | |
110 | |
98 | |
93 |