Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
The measure results are incorrect for certain rows. I don't understand why. Please let me know how I can resolve this. Also the totals are wrong as well.
DAX command =>
Solved! Go to Solution.
@PMnooBI Why not:
Spent =
VAR __Hours = SUM('BTA Hours'[Hours Billed])
VAR __Rate = RELATED('BTA Hourly Rate'[Hourly Rate ])
VAR __Result = __Hours * __Rate
RETURN
__Result
At least that way you can troubleshoot and debug it.
Hi @PMnooBI
Apparently these rows are an aggregation of multiple rows of the 'BTA Hours' table. The 185 represents two rows, the 555 represents 3 rows and so. Either these rows are duplicates or you need to include more columns in the table visual to make sure only row level is represented in the visual without any chance of aggregation.
Hi @PMnooBI
Apparently these rows are an aggregation of multiple rows of the 'BTA Hours' table. The 185 represents two rows, the 555 represents 3 rows and so. Either these rows are duplicates or you need to include more columns in the table visual to make sure only row level is represented in the visual without any chance of aggregation.
@PMnooBI Why not:
Spent =
VAR __Hours = SUM('BTA Hours'[Hours Billed])
VAR __Rate = RELATED('BTA Hourly Rate'[Hourly Rate ])
VAR __Result = __Hours * __Rate
RETURN
__Result
At least that way you can troubleshoot and debug it.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
22 | |
7 | |
6 | |
6 | |
6 |
User | Count |
---|---|
27 | |
10 | |
10 | |
9 | |
6 |