Forum Discussion
KenHoopes
8 years agoNew Member
DAX count filtered from a different table?
I have a table (usertasks) populated with users and task information. I have a table created in PBI that I need information from the usertasks table summarized in. I can't seem to make it happen. Exa...
- 8 years ago
will that work?
late = CALCULATE(
COUNTROWS (usertasks),
FILTER (usertasks, usertasks[status] <> "Completed" && usertasks [enddate]<TODAY()) )
KenHoopes
8 years agoNew Member
Any suggestions?