Forum Discussion
shawn3474
8 years agoFrequent Visitor
Need Help Pulling a count from this list
I am trying to show number of active projects a team is working on. The problem I have is the way the data is stored in the table. Project_Name Teams.Value TeamsWorkCompleted.Value Resourc...
- 8 years ago
The value where the Match column is "False" is your result set.
Salonic
8 years agoResolver I
Hello,
You need 3 measures :
NbTeams = DISTINCTCOUNT(Projects[Teams.Value])
The number of different teams who work on a project
NbTeamsComplete = DISTINCTCOUNT(Projects[TeamsWorkCompleted.Value])
Number of teams who complete their jobs
NbNotComplete = [NbTeams]-[NbTeamsComplete]
Number of teams who still have work to do
shawn3474
8 years agoFrequent Visitor
Not quite what I am looking for. That gives me the number of teams that have work to do, I am looking to show the name of the teams that have work to do.
- abhishekpati868 years agoHelper III
The value where the Match column is "False" is your result set.
- shawn34748 years agoFrequent Visitor
That works! Thanks!