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
Anonymous
Not applicable

ISINSCOPE help to delete row

Hello!!

 

I have an issue with the use of ISINSCOPE function,  I hope someone could help me! 

 

I want to remove the blank level of the hierachies, and im using some measures for this, but when delete the row, the next level is deleted too, and I dont want to delete.; only want to delete the level in blank.

 

001.JPG

 

Im included the example in the pbi file.

example pbi

 

Thanks for the help.

Monica

1 ACCEPTED SOLUTION
v-lili6-msft
Community Support
Community Support

hi, @Anonymous 

Just try this formula as below:

Measure = 
IF (
    IF ( ISINSCOPE ( Sheet1[GROUP_TYPE] ), 1, -1 )
        * IF ( ISINSCOPE ( Sheet1[DESC] ), 1, -1 ) = -1
        && SELECTEDVALUE(Sheet1[GROUP_TYPE]) = BLANK (),
    BLANK (),
    SUM ( Sheet1[VALUE] )
)

Result:

6.JPG

 

Best Regards,

Lin

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

View solution in original post

3 REPLIES 3
v-lili6-msft
Community Support
Community Support

hi, @Anonymous 

Just try this formula as below:

Measure = 
IF (
    IF ( ISINSCOPE ( Sheet1[GROUP_TYPE] ), 1, -1 )
        * IF ( ISINSCOPE ( Sheet1[DESC] ), 1, -1 ) = -1
        && SELECTEDVALUE(Sheet1[GROUP_TYPE]) = BLANK (),
    BLANK (),
    SUM ( Sheet1[VALUE] )
)

Result:

6.JPG

 

Best Regards,

Lin

Community Support Team _ Lin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Thanks for the help.

Greetings

mussaenda
Super User
Super User

Hi @Anonymous ,

 

From your Power BI File, I used a basic table to understand your question better

 

2019_09_14_11_48_22_example_hierarchies_2_Read_Only_Power_BI_Desktop.png

From this photo, you can see the blanks coming from Group_Type.

If you will hide it, it will also affect the columns with it.

 

 

For the workaround, You can substitute the blanks with other values or texts.

 

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.