Forum Discussion

shawn3474's avatar
shawn3474
Frequent Visitor
8 years ago
Solved

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_NameTeams.ValueTeamsWorkCompleted.ValueResourceAssignedStageValue
Project AAppTechDBAJimIn Progress
Project AAppTechUnixDanIn Progress
Project AAppTechWindowsGregIn Progress
Project ADBADBAJimIn Progress
Project ADBAUnixDanIn Progress
Project ADBAWindowsGregIn Progress
Project AUnixDBAJimIn Progress
Project AUnixUnixDanIn Progress
Project AUnixWindowsGregIn Progress
Project AWindowsDBAJimIn Progress
Project AWindowsUnixDanIn Progress
Project AWindowsWindowsGregIn Progress
Project BNetworkWebShawnIn Progress
Project BWebWebGeorgeIn Progress
Project BNetworkWebShawnIn Progress
Project BWebWebGeorge

In Progress

 

What I am trying to do is show a count for each team where the stagevalue is set to In Progress and Teams.Value  is not showing up under TeamsWorkCompleted.Value for a given project.  In the example above only AppTech has work left to be completed for Project A so count that as 1 project for AppTech.  DBA, Unix, and Web would not have any count for Project A as they have a value in the TeamsWorkComplete.Value column.  If through the rest of the table AppTech has another project where they have yet to complete the work then they would have 2 projects.  Hope this makes sense.

 

  • The value where the Match column is "False" is your result set.

     

     

     

4 Replies

  • 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's avatar
      shawn3474
      Frequent 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.

      • abhishekpati86's avatar
        abhishekpati86
        Helper III

        The value where the Match column is "False" is your result set.