Forum Discussion
Anonymous
4 years agoNot applicable
DAX rollup hierarchy
Hi, The dax measure I need help with is "Driver Active Days". It returns the values correctly at the fiscal period level; however, it's wrong when it rolls up to the fiscal year level. The fiscal ye...
amitchandak
Super User
4 years agoAnonymous , Change return like this and try
Sumx(Addcolumns( summarize( FactEmployeeHistory, DimDate[Year], DimDate[Period]), "_1", IF(NOT(ISBLANK([Driver working Hours])), days)),[_1])
teresating886
4 years agoFrequent Visitor
amitchandak It doesn't work because there is no relationship between FactEmployeeHistory and DimDate.