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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

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
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors