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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Sum only on related records

Hello,

Table 1 has Position ID, Position and Location.  Table 2 has Location and NumofDoctors.  I want to find the Sum of the NumofDoctors, but only for locations that exist in Table 1.  I've used RelatedTable on Table 2 to find only the locations where they are related, and it works.  But if I sum the NumofDoctors on this new RelatedTAble, it still sums the whole Table 2 and not just those locations that match up.

1 ACCEPTED SOLUTION
themistoklis
Community Champion
Community Champion

@Anonymous 

 

Try the following formula:

 

NumofDoctors =
VAR __locations =
    CALCULATETABLE ( VALUES ( Table2[Location] ), Table1 )
RETURN
    SUMX ( __locations, CALCULATE ( SUM ( Table2[NumofDoctors] ) ) )

 

 

See attached workspace:

 

View solution in original post

2 REPLIES 2
themistoklis
Community Champion
Community Champion

@Anonymous 

 

Try the following formula:

 

NumofDoctors =
VAR __locations =
    CALCULATETABLE ( VALUES ( Table2[Location] ), Table1 )
RETURN
    SUMX ( __locations, CALCULATE ( SUM ( Table2[NumofDoctors] ) ) )

 

 

See attached workspace:

 

Anonymous
Not applicable

Yes, that worked, thank you so much!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.