Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
Anonymous
Not applicable

Sum of measure by grouping

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

CountryComplexityProjectsFinal OUTPUT
ItalyLow1323
ItalyMedium5 
ItalyHigh5 
APCLow11
EMEALow1115
EMEAMedium1 
EMEAHigh3 
USLow11
UKLow39
UKMedium3 
UKHigh3 
CANADALow37
CANADAMedium1 
CANADAHigh3 
1 ACCEPTED SOLUTION
v-zhangti
Community Support
Community Support

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())

vzhangti_0-1683008575882.png

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.

 

View solution in original post

5 REPLIES 5
v-zhangti
Community Support
Community Support

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())

vzhangti_0-1683008575882.png

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.

 

Jihwan_Kim
Super User
Super User

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.

Jihwan_Kim_2-1682086013879.png

 

 

Jihwan_Kim_1-1682085975316.png

 

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.


Click here to visit my LinkedIn page

Anonymous
Not applicable

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.


Click here to visit my LinkedIn page

Anonymous
Not applicable

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. 

LikhithaVG123_0-1682090276937.png

Thanks

 

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.