Forum Discussion
Anonymous
8 years agoNot applicable
Help with Complex Summarize Measure
Here is what I’m trying to accomplish: I have a table of employees, and a date table in my model. The employee table has a terminated date column. In my report, I have a date slicer. I would like t...
- 8 years ago
Use sumx function to sum your existing measure you calculated for days
Total Terminated Days = SUMX(Table1, [your measure])
parry2k
8 years agoSuper User
Use sumx function to sum your existing measure you calculated for days
Total Terminated Days = SUMX(Table1, [your measure])
Anonymous
8 years agoNot applicable
Brilliant! I think SUMX and I will become friends. Thank you :)