Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
I have an SSAS tabular model based on Inventory data. The data contains not only the current (i.e. todays) On Hand values, but also 90 days worth of history. Here is a very small sample of data:
I need to create a DAX measure that will return that MAX Qty on Hand for each Material over the 90 days worth of history. In the sample above, the MAX would be 6, because on 2-Dec there was 3 in Loc A and 3 in Loc b.
I have tried the following DAX calculation:
CALCULATE (MAX(Inventory[SAP Qty On Hand]), ALL('Date'))
However, this is returning 3, rather than 6. It needs to aggregate by date before doing the MAX.
Any ideas?
Solved! Go to Solution.
Hi @cmncp, the following measure should do the job:
Max Daily Qty Over 90 Days := VAR currentDate = MAX( table[Dte] ) VAR beginDate = currentDate - 90 RETURN MAXX( CALCULATETABLE( VALUES(table[Date]) , ALLEXCEPT( table[Material] ) , table[Date] >= beginDate ) , CALCULATE( SUM(table[Qty On Hand]) ) )
Hi @cmncp, the following measure should do the job:
Max Daily Qty Over 90 Days := VAR currentDate = MAX( table[Dte] ) VAR beginDate = currentDate - 90 RETURN MAXX( CALCULATETABLE( VALUES(table[Date]) , ALLEXCEPT( table[Material] ) , table[Date] >= beginDate ) , CALCULATE( SUM(table[Qty On Hand]) ) )
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 64 | |
| 56 | |
| 43 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 123 | |
| 108 | |
| 44 | |
| 32 | |
| 26 |