Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Define measure for data

Hi

 

I wish to have one measure which filter one region from results and show test message or blank cell. 

 

below table has required details and "Results" column should be the measure results

 

Table got linked with Emp ID and Date in fact table

 

RegionEmpIDUTZResults
CALA110%10%
GGM250%50%
EMEA345%UTZ not available
    
  • PC2790's avatar
    PC2790
    5 years ago

    Hi ,

     

    If you want 0 instead of the string the below measure can be used:

    Result with 0 = SWITCH(True(),RegionTable[Region] = "EMEA",0,CALCULATE(AVERAGE(RegionTable[UTZ]),ALLEXCEPT(RegionTable,RegionTable[Region])))

     

    As you need the calculation to happen against each value, I am afraid the measure won't do in this case.

    You can find the file here for your reference and it contains both ways with string and 0.

     

    Thanks

5 Replies

  • Hi Anonymous 

    Sorry it's not clear what you want. Can you please provide the rest of your data and a clearer explanation of what you are trying to do.

    Regards

    Phil

    • Anonymous's avatar
      Anonymous
      Not applicable

      Hi 

       

      I have table like shared above query and  wish to have a measure which gives me an average of UTZ column and i want to create measure which will give me average of those rows which don't have EMEA in region column.

       

      rest all regions average should be replact in measure

       

      Hope i am clear on my query

  • PC2790's avatar
    PC2790
    Community Champion

    Hi Anonymous ,

     

    You can create a calculated column and use the following DAX:

    Result =
    SWITCH (
        TRUE (),
        RegionTable[Region] = "EMEA", "UTZ not available",
        FORMAT (
            CALCULATE (
                AVERAGE ( RegionTable[UTZ] ),
                ALLEXCEPT ( RegionTable, RegionTable[Region] )
            ),
            "Fixed"
        )
    )

    The result would be something like:

    I hope this works for you

    • Anonymous's avatar
      Anonymous
      Not applicable

      Could you please use zero instate of  

      "UTZ not available"

      so t will show results in number also please help with meaure not column. 

       

      If possible please share PBIX file

       

      Thanks in advance 

      • PC2790's avatar
        PC2790
        Community Champion

        Hi ,

         

        If you want 0 instead of the string the below measure can be used:

        Result with 0 = SWITCH(True(),RegionTable[Region] = "EMEA",0,CALCULATE(AVERAGE(RegionTable[UTZ]),ALLEXCEPT(RegionTable,RegionTable[Region])))

         

        As you need the calculation to happen against each value, I am afraid the measure won't do in this case.

        You can find the file here for your reference and it contains both ways with string and 0.

         

        Thanks