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
NOVICE02
Helper III
Helper III

Modify column Total by excluding a particular value

Hi all, 

 

I don't think this can be done but just wanted to check....

 

Is there a way to have the volume of purchase out of the total ?

the values under the months depict the loss from the purchase. I force aggregated the total purchase in the column for visual sake and wondering if there is a way to show the total for the losses only. in the same view

 

NOVICE02_3-1642383100458.png

 

 

 

 

2 REPLIES 2
v-chenwuz-msft
Community Support
Community Support

Hi @NOVICE02 ,

 

Is that you want to get total of losses purchase under the Total column?

If yes you can try some thing like this measure.

Measure =
VAR _total =
    SUMX( FILTER( 'Table 2', [if_loss] = 0 ), [volume] )
VAR _total_loss =
    SUMX( FILTER( 'Table 2', [if_loss] = 1 ), [volume] )
RETURN
    IF( HASONEVALUE( 'Table 2'[Column month] ), _total, _total_loss )

result:

vchenwuzmsft_1-1642577195297.png

 

If i misunderstood you please share some data without sensitive data and expect result.


Best Regards

Community Support Team _ chenwu zhu

 

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

 

amitchandak
Super User
Super User

@NOVICE02 , if you are using two columns/measures in values you will see two totals

 

But using isinscope you can change the total

new measure= if(isinscope(Table[Month year]), [volume],[Purchase])

 

if you are looking for a Hybrid display with Matrix Column and measure
https://community.powerbi.com/t5/Community-Blog/Creating-a-custom-or-hybrid-matrix-in-PowerBI/ba-p/1...
https://community.powerbi.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/...

vote for Hybrid Table
https://ideas.powerbi.com/ideas/idea/?ideaid=9bc32b23-1eb1-4e74-8b34-349887b37ebc

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

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.