Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
How do I get the median of filtered values.
| Year | Phase | study_id | name | category |
| 2017 | Phase 1 | abc | A | 1 |
| 2017 | Phase 1 | ab | A | 1 |
| 2017 | Phase O | bc | B | 1 |
| 2017 | Phase O | abcd | C | 1 |
| 2018 | Phase 1 | bcd | A | 1 |
| 2018 | Phase O | be | A | 2 |
| 2018 | Phase 1 | ef | B | 1 |
| 2018 | Phase O | en | C | 1 |
| 2018 | Phase 1 | zf | B | 1 |
I want to calculate median of count of study_id by Year, Phase on name. Also take into account for the filter being used in the report of Category = 1
Result should be
| Year | Phase | Median of count of study_id |
| 2017 | Phase 1 | 1 |
Solved! Go to Solution.
I was able to solve it myself.
medianx(values(count(name))), study_id))
Hi @bharukc ,
I can't understand your scenario exactly, could you share me more details?
1. Like what @BeaBF mentioned, what's the meaning of "count of study_id by Year, Phase on name"? also by name?
2. Based on my understanding, the count for 2017 Phase is 2. Then how does the result "1" get?
| Year | Phase | Median of count of study_id |
| 2017 | Phase 1 | 1 |
Could you explain the calculation logic?
Best Regards,
Icey
I was able to solve it myself.
medianx(values(count(name))), study_id))
Hi @bharukc ,
Glad to hear that. Please accept your reply as solution. Your contribution is highly appreciated.
Best Regards,
Icey
Hi:
There's a few ways to do this. Here I added a calculated column to the table (I named it Study). This gets the Category 1 piece.
I hope this is what you are looking for..
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 9 | |
| 8 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 23 | |
| 14 | |
| 10 | |
| 6 | |
| 5 |