This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
I am building a table visual and the grand total at the bottom of my table doesn't match the total of the row items. I have a measure that I am using to only display certain rows before a previous date based on a slicer but it seems like the table is adding all the rows regardless.
This is what my visual looks like:
This is the measure I am using:
My pbix is also available here: https://www.dropbox.com/scl/fi/3wpe3w85fxvjsefhphs4p/Contract-Data.pbix?rlkey=6qbi25w0xge8wh6bl2i5wm...
Thanks for any help on this
Solved! Go to Solution.
Hi,
Please try something like below whether it works.
Contract Line Total Amount =
SUMX (
VALUES ( Contracts[Line Number] ),
IF (
[Line Item Created On] <= [Payment Created On Measure],
CALCULATE (
SUMX ( DISTINCT ( Contracts[Contract Total] ), Contracts[Contract Total] )
)
)
)
Hi,
Please try something like below whether it works.
Contract Line Total Amount =
SUMX (
VALUES ( Contracts[Line Number] ),
IF (
[Line Item Created On] <= [Payment Created On Measure],
CALCULATE (
SUMX ( DISTINCT ( Contracts[Contract Total] ), Contracts[Contract Total] )
)
)
)
Thanks, this worked great!
Hi @Yknoff1 Try this:
Contract Line Total Amount =
CALCULATE(
SUMX(
DISTINCT(Contracts[Contract Total]),
Contracts[Contract Total]
),
FILTER(
Contracts,
[Line Item Created On] <= [Payment Created On Measure]
)
)
Hope this helps!!
If this solved your problem, please accept it as a solution and a kudos!!
Best Regards,
Shahariar Hafiz
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 30 | |
| 28 | |
| 23 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 49 | |
| 47 | |
| 40 | |
| 21 | |
| 19 |