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 nowJuly 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more
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
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 30 | |
| 28 | |
| 24 | |
| 23 | |
| 18 |
| User | Count |
|---|---|
| 44 | |
| 32 | |
| 18 | |
| 17 | |
| 16 |