Forum Discussion
MZetto
2 years agoNew Member
Missing Total in PBI Table
I have a table with multiple number columns and some columns show totals but one is not. I want the outstanding column to show a total as well. Any idea why the table is not summing up the column outstanding?
Formula for Outstanding Value
Outstanding = Fact_JobInvoices[SalesValueTotal] - Fact_JobInvoices[RecievedAmount]
Thank you
2 Replies
- amitchandak
Super User
MZetto , In this case it should not. Bur seem like row context has been used in these measures
try like
Outstanding =
Sumx(Values(Table[Contract Line no]), Fact_JobInvoices[SalesValueTotal] - Fact_JobInvoices[RecievedAmount])
- MZettoNew Member
Thank you for the quick reply. What do I have to put instead of "Table[Contract Line no]"?