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

Measure showing wrong subtotal

HI, 

I have measure that shows wrong subtotal when placed in matrix visual. I have one Payment table with CaseID (not unique), Value, InvoiceDate. Other Invoice table has CaseID (not unique), Value, PaymentReceivedDate.

When I place measure in matrix with CaseID rows show correct measure results, but subtotals do not. 

 

PBI file with sample

So 

UpsaleAmount:=

VAR InvoiceAmount=
CALCULATE(
SUM(InvoiceTable[InvoiceAmount],
USERELATIONSHIP(InvoiceTable[InvoiceDate], Calendar[Date])
)

VAR PaymentReceivedAmount=
CALCULATE(
SUM(PaymentTable[PaymentReceivedAmount]),
USERELATIONHIP(PaymentTable[PaymentReceivedDate], Calendar[Date])
)

RETURN

IF(InvoiceAmount<PaymentReceivedAmount, 
PaymentReceivedAmount - InvoiceAmount, 
BLANK())

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Thanks for effort, solution to problem is at this link Final Word On Measure Totals.

View solution in original post

4 REPLIES 4
Brysonds
Helper III
Helper III

When I exported the matrix to .csv from your Power BI app, the column totals matched what you are showing in Power BI. 

Is there any chance some of the cells in excel weren't being picked up?


Capture.JPG

 

Anonymous
Not applicable

Check columns named 13_TI_Total Payments Received and 12_Upsale_Total Payments Received. This is where error shows.

Anonymous
Not applicable

I have tried placing all transactions into one table and doing calculations over them, but I just do not have idea how to solve this.

Anonymous
Not applicable

Thanks for effort, solution to problem is at this link Final Word On Measure Totals.

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.

Top Solution Authors