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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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