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

Sum of Max Value

Hi,

 

I try to sum a maximum qty by date, but the total qty is incorrect. From below table, I should get total of 71 (26+25+20) but the summary table show 78.

 

yaneedolruedej_0-1665610312804.png

 

here is the formula for my total test2

 

yaneedolruedej_1-1665610377209.png

 

1 ACCEPTED SOLUTION
v-jianboli-msft
Community Support
Community Support

Hi @Anonymous ,

 

Please try:

Measure =
SUMX (
    ADDCOLUMNS (
        SUMMARIZE (
            'Pareto',
            Pareto[skumm],
            Pareto[testname],
            Pareto[station],
            Pareto[tdate]
        ),
        "TotalTestQty",
            MAXX (
                FILTER (
                    'Pareto',
                    [skumm] = EARLIER ( Pareto[skumm] )
                        && [station] = EARLIER ( Pareto[station] )
                        && [tdate] = EARLIER ( Pareto[tdate] )
                ),
                [qty]
            )
    ),
    [TotalTestQty]
)

Final output:

vjianbolimsft_0-1665985857004.png

Best Regards,

Jianbo Li

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

4 REPLIES 4
v-jianboli-msft
Community Support
Community Support

Hi @Anonymous ,

 

Please try:

Measure =
SUMX (
    ADDCOLUMNS (
        SUMMARIZE (
            'Pareto',
            Pareto[skumm],
            Pareto[testname],
            Pareto[station],
            Pareto[tdate]
        ),
        "TotalTestQty",
            MAXX (
                FILTER (
                    'Pareto',
                    [skumm] = EARLIER ( Pareto[skumm] )
                        && [station] = EARLIER ( Pareto[station] )
                        && [tdate] = EARLIER ( Pareto[tdate] )
                ),
                [qty]
            )
    ),
    [TotalTestQty]
)

Final output:

vjianbolimsft_0-1665985857004.png

Best Regards,

Jianbo Li

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Anonymous
Not applicable

the lowest  level is the date, not a station. In side the date, there are many items in there and I want to report the max value of each date and then sum it up.

v-jianboli-msft
Community Support
Community Support

Hi @Anonymous ,

 

Could you tell me if your problem has been solved? If it is, kindly Accept it as the solution. More people will benefit from it. Or if you are still confused about it, please provide me with more details about your table and your problem or share me with your pbix file after removing sensitive data.

 

Refer to:

How to provide sample data in the Power BI Forum

How to Get Your Question Answered Quickly

 

Best Regards,

Jianbo Li

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

HoangHugo
Solution Specialist
Solution Specialist

Hi, I saw in your picture, there is one more sub - hierachy (under [tdate]), mean SUMX will include these rows.

 

In your case, just need to SUMMARIZE the lowest level in hierachy ([station]).

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.