Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Yknoff1
New Member

Total in Table Not Matching Rows

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:

Yknoff1_0-1730256307970.png

 

This is the measure I am using:

 

Contract Line Total Amount =
IF(
    [Line Item Created On] <= [Payment Created On Measure],
    SUMX(
        DISTINCT(Contracts[Contract Total]),
        Contracts[Contract Total]
    )
)

 

 

My pbix is also available here: https://www.dropbox.com/scl/fi/3wpe3w85fxvjsefhphs4p/Contract-Data.pbix?rlkey=6qbi25w0xge8wh6bl2i5wm...

 

Thanks for any help on this

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

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.


Click here to visit my LinkedIn page

View solution in original post

3 REPLIES 3
Jihwan_Kim
Super User
Super User

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.


Click here to visit my LinkedIn page

Thanks, this worked great!

shafiz_p
Super User
Super User

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

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.