Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello,
I am working on a dashboard linked to our student billing system that administrators can use to track outstanding student tuition balances. The dashboard updates with live information from the billing system. What I'd like to be able to do is have several pages based on different criteria (international students, dorm residents, and others), and only show students who have outstanding balances (i.e. balances greater than $0).
I've tried the following:
1) Merge billing data query with itself to aggregate Billing Amount by Student ID
2) "Totals" quick measures - Billing Amount as Base value, Student ID as Category/Field
3) Added a Matrix visualization with Student ID as rows and Billing Amount as values
Here's an example of the student billing format. The Target - Student Balance is the column/measure I want to create that will allow me to filter by student balances that are greater than $0.
| Student ID | Billing Code | Billing Amount | Target - Student Balance |
| P000040342 | COCONTFEE | 850 | 638 |
| P000040342 | CR NELNET | -212 | 638 |
| P000061610 | COCONTNON | 250 | 250 |
| P000079211 | COCONTFEE | 850 | 987 |
| P000079211 | COHLINSGR | 2,787 | 987 |
| P000079211 | COHLCTR | 650 | 987 |
| P000079211 | CRNLNTACH | -3,300 | 987 |
Any suggestions on how to add a Measure that shows balances grouped by Student ID? Thanks in advance.
Solved! Go to Solution.
Try this measure:
Target - Student Balance =
CALCULATE ( SUM ( Table1[Billing Amount] ), ALLEXCEPT ( Table1, Table1[Student ID] ) )
Proud to be a Super User!
Try this measure:
Target - Student Balance =
CALCULATE ( SUM ( Table1[Billing Amount] ), ALLEXCEPT ( Table1, Table1[Student ID] ) )
Proud to be a Super User!
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!