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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Murkow
Frequent Visitor

Calculating based on filtering column values

Hi everybody,

I'd like to ask you to help me with a DAX formula.

I have this situation

power bi.jpg

 

I need to get the formula for the yellow Requested column.

The logic is following:

I need to calculate all hours of every user that are not _Attendance

 

Thank you in advance.

 

 

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

@Murkow

 

Try this Column

 

Requested =
CALCULATE (
    SUM ( TableName[Hours] ),
    FILTER (
        ALLEXCEPT ( TableName, TableName[User] ),
        TableName[Project category] <> "_Attendance"
    )
)

View solution in original post

2 REPLIES 2
Zubair_Muhammad
Community Champion
Community Champion

@Murkow

 

Try this Column

 

Requested =
CALCULATE (
    SUM ( TableName[Hours] ),
    FILTER (
        ALLEXCEPT ( TableName, TableName[User] ),
        TableName[Project category] <> "_Attendance"
    )
)

Worked perfectly, than you, Muhammad

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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