Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
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 calculate all hours of every user that are not _Attendance
Thank you in advance.
Solved! Go to Solution.
Try this Column
Requested =
CALCULATE (
SUM ( TableName[Hours] ),
FILTER (
ALLEXCEPT ( TableName, TableName[User] ),
TableName[Project category] <> "_Attendance"
)
)
Try this Column
Requested =
CALCULATE (
SUM ( TableName[Hours] ),
FILTER (
ALLEXCEPT ( TableName, TableName[User] ),
TableName[Project category] <> "_Attendance"
)
)
Worked perfectly, than you, Muhammad
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 24 | |
| 21 | |
| 20 | |
| 17 | |
| 12 |
| User | Count |
|---|---|
| 66 | |
| 55 | |
| 42 | |
| 38 | |
| 30 |