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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

Inventory Week Over Week

Hi all,

 

I am trying to calculate week over week inventory - this is what my data currently looks like:

rellis14_0-1712785517571.png

But I need the end inventory to be the starting inventory for the next week like this:

rellis14_1-1712785625381.png

 

Thanks in advance!!

 

 

 

2 REPLIES 2
danextian
Super User
Super User

Hi @Anonymous ,

 

Create a separate Dates table (if you don't have one yet) and use the week start from that table in your visuals. Then create this measure.

Start/Opening inventory =
CALCULATE (
    MAX ( data[ending inventory] ),
    FILTER ( ALL ( datestable ), datestable[week] < MIN ( data[week] ) )
)

Please refer to attached pbix files for the dates table and sample calculation of opening balances.





Dane Belarmino | Microsoft MVP | Proud to be a Super User!

Did I answer your question? Mark my post as a solution!


"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.
Anonymous
Not applicable

Hi - thanks for the response! I am getting this error:

rellis14_0-1712849952682.png

 

Not sure if this helps, but my starting, change, and end inventory are all measures not a column. All of my tables are connected by date.

rellis14_1-1712850050690.png

 

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.

Top Solution Authors