Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hello,
I'm new to Power BI and have taken over a dashboard created by someone no longer around to ask.
I am wondering why my totals are not equaling what I am adding up in the columns for Scheduled Hours and Sick Hours.
Any assistance on what is happening and how to fix this would be great.
Solved! Go to Solution.
Hi @Anonymous ,
That is normally the case if the aggregation used in the formula uses the distinct values. For example, Item1 in column A shows 2 and Item2 shows 3 but the total sums up to only 5. To illustrate:
| ColumnA | ColumnB | Distinct Count per columnA | Distinct Count as a whole |
| Item1 | A | 3 unique items | 4 unique items (A, B, C, D where C is counted once) |
| Item1 | B | ||
| Item1 | C | ||
| Item2 | D | 2 unique items | |
| Item2 | C |
You can inspect the formulas in those measure to get an idea.
Hi @Anonymous ,
That is normally the case if the aggregation used in the formula uses the distinct values. For example, Item1 in column A shows 2 and Item2 shows 3 but the total sums up to only 5. To illustrate:
| ColumnA | ColumnB | Distinct Count per columnA | Distinct Count as a whole |
| Item1 | A | 3 unique items | 4 unique items (A, B, C, D where C is counted once) |
| Item1 | B | ||
| Item1 | C | ||
| Item2 | D | 2 unique items | |
| Item2 | C |
You can inspect the formulas in those measure to get an idea.
Thank you for providing an example. This is something I will need to be aware of go forward and try to find a way to show the proper totals
It is suggested to cut the table data to make it clearer. Try this code to create two new Measures:
ScheduledHours = SUM([Scheduled Hours])
SickHours = SUM([Sick Hours])
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 27 | |
| 23 | |
| 18 | |
| 18 | |
| 15 |
| User | Count |
|---|---|
| 62 | |
| 44 | |
| 42 | |
| 37 | |
| 37 |