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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Omega
Impactful Individual
Impactful Individual

Month closing different dates

Hi, 

 

I want to calculate the total closing stock for my customers where not all my customers close in the last day of the month but some before. 

 

I tried creating the below measure, that will pick the last date of the month in which there is data per customer. Problem is in the total in which the customers that didn't close in the last date of the month, are considered as 0. 

 

I can't create columns as I'm connected to SSIS. The below is only sample data.

 

I created the below measure but not able to see what I'm missing: 

 

 

Closing Stock = 
var x = CALCULATE(MAX('Date'[Date]),FILTER('Date', SUM('Table'[Stock]) <> 0))
var y = CALCULATE(SUM('Table'[Stock]), 'Date'[Date] = x)
return
y

 

 

 

In the example below, 

 

I want to show my total as 1619 (955 + 664)

 

Report View.JPG

Relationship view.JPG

1 ACCEPTED SOLUTION
mahoneypat
Employee
Employee

One quick fix might be to also write this measure

 

SumX Customer = Sumx(Values(DataTable[Customer]), [Closing Stock]) // 2nd part needs to be a measure or wrapped in Calculate()

 

This uses your original measure but calculates it for each customer, then sums those results up.

 

If this works for you, please mark it as the solution.  Kudos are great too.  Please let me know if it doesn't or if any questions.
Regards,
Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


View solution in original post

3 REPLIES 3
mahoneypat
Employee
Employee

One quick fix might be to also write this measure

 

SumX Customer = Sumx(Values(DataTable[Customer]), [Closing Stock]) // 2nd part needs to be a measure or wrapped in Calculate()

 

This uses your original measure but calculates it for each customer, then sums those results up.

 

If this works for you, please mark it as the solution.  Kudos are great too.  Please let me know if it doesn't or if any questions.
Regards,
Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


Omega
Impactful Individual
Impactful Individual

I was trying to work on SUMX as variable in the closing stock measure and that's why my numbers weren't correct. When creating it in as a seperate measure, it worked. 

 

Why?

Greg_Deckler
Super User
Super User

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

 

 


@ 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!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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