Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I have a table with the total hours for each employee. The table has fields like ProjectID, TaskID, and the Total Hours are on each row.
I need help with DAX to Sum(TotalHours) so it totals regardless of any other field, or filter, All help is much appreciated!
Solved! Go to Solution.
calculate(
sum( T[TotalHours] ),
removefilters( )
)
calculate(
sum( T[TotalHours] ),
removefilters( )
)