Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi,
i need to get sum of the projects by Complexity as below, Final output i need to get
Final output - Italy > 13 low+5 Medium+5 High = 23
- EMEA >11 low+1 Medium+3 High = 15
Projects is a measure - DISTINCTCOUNT(_Projects_custom[ProjectIdentifier])
ProjectIdentifier- Text Data type( ex- IN000886, IN000965, IN000234...)
May i know how to achieve this? Please help
Country | Complexity | Projects | Final OUTPUT |
Italy | Low | 13 | 23 |
Italy | Medium | 5 | |
Italy | High | 5 | |
APC | Low | 1 | 1 |
EMEA | Low | 11 | 15 |
EMEA | Medium | 1 | |
EMEA | High | 3 | |
US | Low | 1 | 1 |
UK | Low | 3 | 9 |
UK | Medium | 3 | |
UK | High | 3 | |
CANADA | Low | 3 | 7 |
CANADA | Medium | 1 | |
CANADA | High | 3 |
Solved! Go to Solution.
Hi, @Anonymous
You can try the following methods.
Final OUTPUT =
Var _Sum=CALCULATE([Projects],ALLEXCEPT('Table','Table'[Country]))
Return
IF(MAX('Table'[Complexity])="Low",_Sum,BLANK())
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Anonymous
You can try the following methods.
Final OUTPUT =
Var _Sum=CALCULATE([Projects],ALLEXCEPT('Table','Table'[Country]))
Return
IF(MAX('Table'[Complexity])="Low",_Sum,BLANK())
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
I am not sure how your datamodel looks like, but I tried to create the sample pbix flie like below.
Please check the below picture and the attached pbix file.
I hope the below can provide some ideas on how to create a solution for your datamodel.
Final outcome measure: =
IF (
SELECTEDVALUE ( Complexity[Complexity] ) = "Low",
CALCULATE (
[Project count:],
ALL ( Complexity[Complexity], Complexity[Index] )
)
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Thanks for the solution.
But in measure you have mentioned only "Low". High & medium complexity not required to add in measure?
please suggest
Thanks
Hi,
Please share your sample pbix file's link.
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Hi @Jihwan_Kim
i have used your measure but it is not giving total sum only "Low" complexity is giving values
Note - in my data all the columns are from one table only.
Thanks
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
13 | |
12 | |
11 | |
7 | |
7 |
User | Count |
---|---|
13 | |
12 | |
12 | |
9 | |
8 |