Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hello everybody,
I'd like to ask you for help with a calculated column.
I'll use the following table to demostrate it on an example
In order to get the Requested column I use this formula:
Requested =
CALCULATE (
SUM (Query1[hours] );
FILTER (
ALLEXCEPT ( Query1; Query1[User] );
Query1[project_category] <> "_Attendance"
)
)
It works, however, when I use the slicer for the visualization, the date slicer doesn't have any influence in my new column and it still returns only one (the total) value.
Is there anything I can do about that? Any formula taht cooperates with the date and will return a value only for the time period I filter using the slicer?
Thanks in advance
Solved! Go to Solution.
Hi @Murkow,
Please try below measure:
requested =
CALCULATE (
SUM ( Query1[Hours] ),
ALLSELECTED ( Query1[Spent_on] ),
ALLSELECTED ( Query1[Project category] ),
Query1[project category] <> "_Attendance"
)
Best regards,
Yuliana Gu
Hi @Murkow,
Please try below measure:
requested =
CALCULATE (
SUM ( Query1[Hours] ),
ALLSELECTED ( Query1[Spent_on] ),
ALLSELECTED ( Query1[Project category] ),
Query1[project category] <> "_Attendance"
)
Best regards,
Yuliana Gu
Hi Yuliana,
great help, thank you!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 80 | |
| 49 | |
| 35 | |
| 31 | |
| 30 |