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
Altaibali
New Member

Calculating the Max based on two criterias

Hello All,

 

I have a daily stock report that I combine in Power query, and the report after combining would look like this:

DateCalendar WeekContractProviderAvailable Stock
1/2/2023266666AOI30
1/2/2023255555AOI20
1/2/2023244444FBL60
1/3/2023266666AOI40
1/3/2023255555AOI15
1/3/2023244444FBL20

 

So the first 3 entries are from the report of 02.01.2023 and the next are from the report of 03.01.2023 and so on..

I need a dax formula to calculate the maximum stock available in every calendar week to use in a pivot table, by summing up the available stock for all the contracts everyday in the week and gives value of the maximum day, and your help on this is much appreciated.

 

Thank you,

Altaiba

1 REPLY 1
MAwwad
Super User
Super User

 

To calculate the maximum stock available in every calendar week, you can use the following DAX formula:

 

 
Max Stock Available = MAXX( ADDCOLUMNS( GROUPBY( Table1, Table1[Calendar Week], Table1[Contract] ), "Total Stock", SUM(Table1[Available Stock]) ), [Total Stock] )
 

This formula first groups the data by the Calendar Week and Contract columns, and calculates the total stock available for each combination using the SUM function. It then creates a new column called "Total Stock" to store the calculated value.

The formula then uses the MAXX function to iterate over the grouped data and return the maximum value of the "Total Stock" column.

You can add this formula to your data model and use it in a pivot table to get the maximum stock available for each calendar week.

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.

Top Solution Authors
Top Kudoed Authors