This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Morning
I am working with a single table that has 'enrollment' numbers that I would like to sum up. The trick is, each each territory/program has a distinct enrollment number. I cannot simply sum up the enrollment column for the table has duplicate territory/program combinations.
I was trying to use the DAX formula 'Enrollment=sumx(Enrollment_tbl,enrollment). This did not work as I expected.
I am attaching an image of data from an excel spreadsheet to better demonstrate what I am trying to achieve in BI.
Thanks in advance.
TDR
Solved! Go to Solution.
Hi @IamTDR ,
Take a try of this :
Measure = SUMX(GROUPBY('BI BookInUse',[Program],[Territory],''BI BookInUse''[Enrollment]),[Enrollment])Best regards,
Dina Ye
Hi @IamTDR
The below should work for you.
Enrollment Measure =
SUMX(
GROUPBY( Enrollment_tbl, Enrollment_tbl[Territory], Enrollment_tbl[ProgCode] ),
[Enrollment]
)
@IamTDR try following
Sum Enrollment = SUMX( SUMMARIZECOLUMNS( Table[Territory], Table[ProgCode]), CALCULATE( SUM( Table[Enrollment] ) ) )
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
Thanks for the suggestions but so far I am not receiving the desired results. I inserted an image of what my visual currently looks like. The Total Enrollment number should total to 12,144 and not 60,720. My Total Enrollment number is based on Territory and Program.
Measure currently being used.
Hi @IamTDR ,
Take a try of this :
Measure = SUMX(GROUPBY('BI BookInUse',[Program],[Territory],''BI BookInUse''[Enrollment]),[Enrollment])Best regards,
Dina Ye
Thanks! Appreicate the aid
TDR
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 27 | |
| 25 | |
| 23 | |
| 19 | |
| 14 |
| User | Count |
|---|---|
| 50 | |
| 46 | |
| 19 | |
| 18 | |
| 18 |