Forum Discussion
Murkow
8 years agoFrequent 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 I need to get the formula for the yellow Requested column. The logic is following: I need to calcu...
- 8 years ago
Try this Column
Requested = CALCULATE ( SUM ( TableName[Hours] ), FILTER ( ALLEXCEPT ( TableName, TableName[User] ), TableName[Project category] <> "_Attendance" ) )
Zubair_Muhammad
8 years agoCommunity Champion
Try this Column
Requested =
CALCULATE (
SUM ( TableName[Hours] ),
FILTER (
ALLEXCEPT ( TableName, TableName[User] ),
TableName[Project category] <> "_Attendance"
)
)