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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Pikachu-Power
Impactful Individual
Impactful Individual

ISINSCOPE in matrix question

Hello,

 

for a matrix i want to vanish one row and just want to show the total. C i calculateted as A - B: 

 

1.PNG

 

I tried something like

 

Measure =

IF ( ISINSCOPE ( TABLE ( Column2 ) ) && MAX ( TABLE ( Column2 ) ) = "C",

    BLANK ( ),

    [value] )

 

where value is a measure who creates a new table with UNION and the difference C = A - B. 

 

Result is that Row C vanish completely. Some ideas where the mistake is?

 

Many thanks.

 

Best regards

Power Pikachu

 

PS: Normally we have 12 month and a total. I unintentionally used December as a total. Hope it doesnt matter 🙂

2 REPLIES 2
amitchandak
Super User
Super User

@Pikachu-Power , You have to try measure like

 


Measure =

IF ( ISINSCOPE ( TABLE[Column2] ) && MAX ( TABLE[Column2 ] ) = "C",

calculate([Measure],TABLE[Column2 ] ="A") - calculate([Measure],TABLE[Column2 ] ="B")

[Measure] )

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Hello,

 

what is [Measure] in your DAX code? My created Measure or maybe [value]? I missing something like BLANK( ). Normally the difference is a little more complicated with dummy values and UNION. I dont know if if i can pull out from [value].

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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