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
apolarwright
Regular Visitor

Sum column for each distinct ID and include filters

Hi. Trying to write some dax for a measure. 

 

I have a table that I've expanded out, so the ID column has many of the same values. I want a measure where I sum up all "Working Days Taken", but only if certain criteria is met (e.g., Approval Status column is equal to 1). 

 

I also only want to include a value once in the sum for each ID.

 

I've written some Dax. But it's returning too high a number, because it's it's summing up all values, rather than once per ID.

 

Sum of Working Days = calculate(SUM('Holiday Requests'[Working Days Taken]), 'Holiday Requests'[Request Type] = "holiday", 'Holiday Requests'[Approval Status] <> "rejected", YEAR('Holiday Requests'[Date]) = YEAR(TODAY()))

 

 

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

Hi @apolarwright ,

Please update the formula of measure [Sum of Working Days] as below and check if it can return the expected result... You can find the details in the attachment.

 

Sum of Working Days =
CALCULATE (
    SUM ( 'Holiday Requests'[Working Days Taken] ),
    FILTER (
        'Holiday Requests',
        'Holiday Requests'[Request Type] = "holiday"
            && 'Holiday Requests'[Approval Status] <> "rejected"
            && YEAR ( 'Holiday Requests'[Date] ) = YEAR ( TODAY () )
    )
)

 

yingyinr_0-1674019287231.png

If the above one can't help you, could you please provide more raw data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples? It would be helpful to find out the solution. You can refer the following links to share the required info:

How to provide sample data in the Power BI Forum

How to Get Your Question Answered Quickly

And It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.

How to upload PBI in Community

Best Regards

Community Support Team _ Rena
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

2 REPLIES 2
v-yiruan-msft
Community Support
Community Support

Hi @apolarwright ,

Please update the formula of measure [Sum of Working Days] as below and check if it can return the expected result... You can find the details in the attachment.

 

Sum of Working Days =
CALCULATE (
    SUM ( 'Holiday Requests'[Working Days Taken] ),
    FILTER (
        'Holiday Requests',
        'Holiday Requests'[Request Type] = "holiday"
            && 'Holiday Requests'[Approval Status] <> "rejected"
            && YEAR ( 'Holiday Requests'[Date] ) = YEAR ( TODAY () )
    )
)

 

yingyinr_0-1674019287231.png

If the above one can't help you, could you please provide more raw data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples? It would be helpful to find out the solution. You can refer the following links to share the required info:

How to provide sample data in the Power BI Forum

How to Get Your Question Answered Quickly

And It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.

How to upload PBI in Community

Best Regards

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Renan_Barrios
New Member

Olá, tente escrever desta forma, a expressão calculate na parte dos filtros trabalha melhor usando a formula FILTER.

Hello, try writing this way, the calculate expression in the filters part works best using the FILTER formula.

Sum of Working Days = calculate(SUM('Holiday Requests'[Working Days Taken]),Filter('Holiday Requests', 'Holiday Requests'[Request Type] = "holiday"), Filter('Holiday Requests', 'Holiday Requests'[Approval Status] <> "rejected"),Filter('Holiday Requests', YEAR('Holiday Requests'[Date]) = YEAR(TODAY())   ))

 

 

 

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.

Top Solution Authors