Forum Discussion

gladies123's avatar
gladies123
Icon for Helper I rankHelper I
6 years ago

Reg- To hide a value in matrix visualization

Hello,

 

Herewith i attached a image for your reference .. in that image i have highlighted the  portion that is iag(vertical) it will be drill to iag delivery(function) again it will be drill to iag voc(project) and then again dril to Ename & Ecode in that Ename & Ecode it has only ename called (marc) it doesn't have ecode so in this scenario the drill process should be stop in project level  iag voc that is it's shoud not display ename & ecode and their revenue also

 

Thanks in advance

gladies123

 

4 Replies

  • v-alq-msft's avatar
    v-alq-msft
    Icon for Community Support rankCommunity Support

    Hi, gladies123 

     

    Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.

     

    Proj:

     

    You may try the following two measures to see if they help.

     

    Result1 = 
    IF(
        ISINSCOPE(Proj[Ename&Ecode]),
        IF(
            ISERROR(
                VALUE(RIGHT(SELECTEDVALUE(Proj[Ename&Ecode]),1))
            ),
            BLANK(),
            SUM(Proj[Revenue])
        ),
        SUM(Proj[Revenue])
    )
    
    OR
    
    Result2 = 
    IF(
        ISINSCOPE(Proj[Ename&Ecode]),
        IF(
            ISERROR(
                VALUE(RIGHT(SELECTEDVALUE(Proj[Ename&Ecode]),1))
            ),
            BLANK(),
            SUM(Proj[Revenue])
        ),
        var x = 
            CALCULATE(
                SUM(Proj[Revenue]),
                FILTER(
                    Proj,
                    NOT(
                        ISERROR(
                            VALUE(RIGHT((Proj[Ename&Ecode]),1))
                        )
                    )
                )
            )
        return    
        IF(
            x =BLANK(),
            0,
            x
        )
    
    )

     

     

    You need to uncheck the option 'Show items with no data'. Here is the result.

     

     

    Best Regards

    Allan

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

    • gladies123's avatar
      gladies123
      Icon for Helper I rankHelper I

      Hi v-alq-msft ,

       

      thanks for the reply. Still problem is there .  revenue (result)  is gone but still name is dispalying.  the name should not display. so kindly do the needful for this issue.

       

      • v-alq-msft's avatar
        v-alq-msft
        Icon for Community Support rankCommunity Support

        Hi, gladies123 

         

        There is another value 'CTC' put in the 'Value' area. So 'Show items with no data' doesn't work. You may modify the measure "CTC" to blank for the specific level. Or you can remove 'CTC'.

         

        Best Regards

        Allan