Forum Discussion

Hasan_iba's avatar
Hasan_iba
Helper II
9 years ago

Measure Shows Blank Rows

Hi. all the experts. Hope all of you are doing great!! Recently, I am having a problem with a dax measure. There is a measure named number of members which calculates the total number of members a specific team contains. The problem with the measure is that the measure does not show values whenever there is no value in the demand column. I want to have value for team member column irrespective of the value of the demand column. The attached pbix file will be helpful to have a look at the situation in depth. 

https://drive.google.com/file/d/0B0XwYvmbIN12UUIya0JUS0tmYWs/view?usp=sharing

A prompt solution will be highly appreciated. Thank you

Hasan

4 Replies

  • Hi Hasan_iba,

     

    Looking at your file you can achieve this by using this measure:

     

    Member_N = CALCULATE
    (
    DISTINCTCOUNT(Resources[ResourceId]),
    Resources[TeamName] = ALLSELECTED(ResourceDemandTimephasedDataSet[Team])
    )

    Hope this helps,

     

    Regards,

    MFelix

    • Hasan_iba's avatar
      Hasan_iba
      Helper II

      Hi MFelix, thanks for the quick reply. I applied your provided expression. It works to some extent and does not so some extent as well. The following image should clarify. As you can see, although the Operations centre team shows only 3 resource ID, the table shows team members of 15. That is quite strange. Can you suggest a way to resolve this issue? I want to have the same number of members as the number of resource ID. Thanks

      • MFelix's avatar
        MFelix
        Super User

        Hi Hasan_iba,

         

        Do you want th total number of Resources in the Team, or the total identified in the ResourceDemandTimephasedDataSet table that are from that team?

         

        The measure I made was based on the table resource so it counts all the team members.

         

        Regards,

        MFelix