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,
So I have this problem, I have a table with individual efficiency scores (per day) of each worker. I know how tu calculate a monthly median for each one of them. But, each worker is assigned to a different sector. And what I want to do, is to calculate a monthly median, from a monthly median (score) from every worker assigned to a spesific room (chose by a slicer or filter). So a monthly median for each sector, but calculated from monthly scores of workers assigned to it.
What i have:
- a table with date (daily), worker id, and score
- a table with workers id's, and sector
Tried various combinations and nothin, either empty result or dax error. Im new to it so the struggle is big. Please help.
Solved! Go to Solution.
Hi @blazko
Please try this formula
Median Score = IF( ISFILTERED('Users'[user]), CALCULATE(MEDIAN('Users'[score])), MEDIANX('Sectors',CALCULATE(MEDIAN('Users'[score]))) )
@blazko wrote:
Hi,
So I have this problem, I have a table with individual efficiency scores (per day) of each worker. I know how tu calculate a monthly median for each one of them. But, each worker is assigned to a different sector. And what I want to do, is to calculate a monthly median, from a monthly median (score) from every worker assigned to a spesific room (chose by a slicer or filter). So a monthly median for each sector, but calculated from monthly scores of workers assigned to it.
What i have:
- a table with date (daily), worker id, and score
- a table with workers id's, and sector
Tried various combinations and nothin, either empty result or dax error. Im new to it so the struggle is big. Please help.
How do you calculate the Median, with a measure? I think there shouldn't be any issue if those two tables are in a proper relationship(one(sector table) to many(daily table)).
Hi @Eric_Zhang
I think this is a merge of this one
https://community.powerbi.com/t5/Desktop/median-from-other-median/m-p/152670#M66060
Hi,
So I have this problem, I have a table with individual efficiency scores (per day) of each worker. I know how tu calculate a monthly median for each one of them. But, each worker is assigned to a different sector. And what I want to do, is to calculate a monthly median, from a monthly median (score) from every worker assigned to a spesific room (chose by a slicer or filter). So a monthly median for each sector, but calculated from monthly scores of workers assigned to it.
What i have:
- a table with date (daily), worker id, and score
- a table with workers id's, and sector
Tried various combinations and nothin, either empty result or dax error. Im new to it so the struggle is big. Please help.
Hi @blazko
Any chance you can post a small sample of your table. Perhaps 10 or 15 rows with enough for us to try suggest some measures.
date | user | score |
2017-01-01 | user1 | 75,00% |
2017-01-01 | user2 | 33,48% |
2017-01-01 | user3 | 23,04% |
2017-01-01 | user4 | 14,64% |
2017-01-01 | user5 | 2,11% |
2017-01-02 | user1 | 31,13% |
2017-01-02 | user2 | 92,83% |
2017-01-02 | user3 | 81,63% |
2017-01-02 | user4 | 87,79% |
2017-01-02 | user5 | 19,45% |
2017-01-03 | user1 | 57,24% |
2017-01-03 | user2 | 10,11% |
2017-01-03 | user3 | 95,28% |
2017-01-03 | user4 | 57,79% |
2017-01-03 | user5 | 80,25% |
2017-01-04 | user1 | 57,17% |
2017-01-04 | user2 | 80,83% |
And the table with users assigned to sectors:
user | sector |
user1 | sectoy01 |
user2 | sectoy01 |
user3 | sector02 |
user4 | sector02 |
user5 | se tor02 |
So I need to calculate a monthly median for each sector, from total monthly medians of each user.
I want to choose month/sector from a slicer/filter
Hi @blazko
If I create a relationship between the two tables as follows:
And then create the following calculated measure
Median Score = MEDIAN('Users'[score])
I then can make this Matrix
This might not be 100% right but at least its a starting point
I really hoped itll be that simple, but it calculates in a wrong way:
changed the data a little bit to see the difference in Power BI measures better. What i need is the green, blue calulation. Power Bi with your measure calulates through all the data (light green and orange).
The basic MEDIAN formula. I could use the table form with the {}, but i dont want to take this calculations in Excel.
I want to use the plain data as in the example inthe first post, and do the measures on the fly, if possible.
Hi @blazko
Please try this formula
Median Score = IF( ISFILTERED('Users'[user]), CALCULATE(MEDIAN('Users'[score])), MEDIANX('Sectors',CALCULATE(MEDIAN('Users'[score]))) )
Thank You very much!
There is no way I could process it by myself. Works great!
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
115 | |
112 | |
105 | |
95 | |
58 |
User | Count |
---|---|
174 | |
147 | |
136 | |
102 | |
82 |