Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
gladies123
Helper I
Helper I

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

ISSUE 1.PNG

 

4 REPLIES 4
v-alq-msft
Community Support
Community Support

Hi, @gladies123 

 

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

 

Proj:

a1.png

 

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.

a2.png

 

a3.png

 

Best Regards

Allan

 

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

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.ISSUES.PNG

 

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

 

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.