Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register 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
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 45 | |
| 35 | |
| 30 | |
| 15 | |
| 15 |
| User | Count |
|---|---|
| 58 | |
| 55 | |
| 38 | |
| 21 | |
| 21 |