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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! 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
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.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.