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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
mybeppo
New Member

Sum w/o sum doublicates

Dear all

 

how can I sum following situation correctly:

 

From the table below: I have 2x Status "paid" but i only want to sum "amount" 1x with the smaller date from "modified_on". 

So when I sum (amount) it should only count the 80 at modified_on 28.01.2022.

 

Thank you all for your help!!!

 

idrevrevtypecreated_onmodified_onaddressamountdatelicense_platenumberpayment_periodstatuslegal_status
432155122.11.2021 10:3315.12.2021 17:59Test8015.12.2021 17:59ZH12301674251621ISSUEDNONE
4321133122.11.2021 10:3307.01.2022 03:00Test8015.12.2021 17:59ZH12301674251621OVERDUENONE
4321199122.11.2021 10:3328.01.2022 07:36Test8015.12.2021 17:59ZH12301674251621PAIDNONE
4321393122.11.2021 10:3301.03.2022 18:53Test8015.12.2021 17:59ZH12301674251621PAIDREMINDED
1 ACCEPTED SOLUTION
v-kkf-msft
Community Support
Community Support

Hi @mybeppo ,

 

Please try the following formula:

 

Measure = 
VAR mindate =
    MINX (
        FILTER (
            ALLSELECTED ( 'Table' ),
            'Table'[id] = MAX ( 'Table'[id] )
                && 'Table'[status] = "PAID"
        ),
        'Table'[modified_on]
    )
RETURN
    CALCULATE (
        SUM ( 'Table'[amount] ),
        FILTER ( 'Table', 'Table'[modified_on] = mindate && 'Table'[status] = "PAID" )
    )

vkkfmsft_0-1648445219917.png

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
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-kkf-msft
Community Support
Community Support

Hi @mybeppo ,

 

Please try the following formula:

 

Measure = 
VAR mindate =
    MINX (
        FILTER (
            ALLSELECTED ( 'Table' ),
            'Table'[id] = MAX ( 'Table'[id] )
                && 'Table'[status] = "PAID"
        ),
        'Table'[modified_on]
    )
RETURN
    CALCULATE (
        SUM ( 'Table'[amount] ),
        FILTER ( 'Table', 'Table'[modified_on] = mindate && 'Table'[status] = "PAID" )
    )

vkkfmsft_0-1648445219917.png

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Tahreem24
Super User
Super User

@mybeppo Try this measure:

Measure = CALCULATE(SUM(StatusTable[amount]),FILTER(StatusTable,StatusTable[modified_on]<=MIN(StatusTable[modified_on])),StatusTable[status]="PAID")
 
Don't forget to give thumbs up and accept this as a solution if it helped you!!!

Please take a quick glance at newly created dashboards : Restaurant Management Dashboard , HR Analytics Report , Hotel Management Report, Sales Analysis Report , Fortune 500 Companies Analysis , Revenue Tracking Dashboard
davehus
Memorable Member
Memorable Member

Hi @mybeppo , Will something like this work?

 

Measure =
Var MinDate_ = CALCULATE( MIN('Table'[modified_on]),ALLEXCEPT('Table','Table'[status])) RETURN
CALCULATE(SUM('Table'[amount]),FILTER('Table','Table'[status] = "PAID" &&'Table'[modified_on]=MinDate_))

thank you, unfortunatly it shows no results

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

Check out the September 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

Find out what's new and trending in the Fabric Community.

Top Kudoed Authors