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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
XIOFEN_LIM
Helper II
Helper II

DAX: SubFigure logic to cater priority on date slicer first, then group by columns to sum qty

Hi friends,

I need the subtotal based on grouping included date filtering applied at first.

Priority: 1: date slicer filtering

             2: sort by Ckey, ItemNo, DB_Ind, Entry No

             3: group by Ckey, ItemNo

             4: sum qty for inventory OUT only

But currently logic only able cater for item 2,3,4.

 

The first screen showing sample of raw data about overall inventory including inventory IN & inventory OUT.
inventory IN: Entry Type in {0,2,6}               inventory OUT: Entry Type in {1,3,5}

RawSampleRawSample

 

Screen below is what currently I can get the correct result by applying below logic.

InventoryOUTQty = 
SUMMARIZE(FILTER(V_ItemLedgerEntry,V_ItemLedgerEntry[EntryType] in {1,3,5}),"InventoryOUT",SUM(V_ItemLedgerEntry[InvoiceQty]))
Subtotal_InvOUTQty =
CALCULATE([InventoryOUTQty],ALLEXCEPT(V_ItemLedgerEntry,V_ItemLedgerEntry[CKey],V_ItemLedgerEntry[Item No_]))

Result1_DefaultResult1_Default

Btw, I cant get the result below if date slicer is selected, it still showing overall subtotal as -26 instead of -1.

Result_SelectionOnDateSlicerResult_SelectionOnDateSlicer

 

Thank you.

XioFen

 

2 REPLIES 2
Greg_Deckler
Community Champion
Community Champion

I am not sure I follow. You say you are getting the correct result. So that's good right? 

 

It sort of sounds like a measures total issue to me but that's a complete guess. This looks like a measure totals problem. Very common. See my post about it here: https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376

Also, this Quick Measure, Measure Totals, The Final Word should get you what you need:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Hi Mr. Greg,

 

Yes, I am getting correct subfigure if no filter for date slicer (default showing all record). But if do some selection on date slicer, the subfigure will be wrong because it still showing grouping based on all record instead of record after applied date slicer filtering.

 

Thank you.

Xio Fen

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.