March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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] )
)
)
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
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] )
)
)
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
115 | |
76 | |
57 | |
52 | |
44 |
User | Count |
---|---|
167 | |
117 | |
63 | |
57 | |
50 |