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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
Jakob_PBI
Frequent Visitor

Calculating stock level value from last month - new demand

Hi

 

I need help to calculate new stock level.
I have 3 tables:

1) inbound (incoming new products to the warehouse)

2) demand (how much demand in qty is expected)

3) stock level (current stock level for 1 date)

 

i need help to calculate the correct new stock level, which mean i need the "result" from last months new stock level and place it into new stock level static, .. or something.. im not sure but i hope the problem is intuitive, i just need to calculate new stock level by using last months calculation in the next month.

 

Here is PBI file

https://www.dropbox.com/s/4y23cv00z0y8836/samle%20pbi.pbix?dl=0

 

and here is pictures in case you cant downloade the file:

Jakob_PBI_3-1682671429780.png

the green is right, the red is wrong

Jakob_PBI_8-1682671650190.png

 

Jakob_PBI_4-1682671440795.png

Jakob_PBI_5-1682671448814.pngJakob_PBI_6-1682671457601.pngJakob_PBI_7-1682671464226.png

 

 

in case you cant download the file, its very simple, here is the underlying data:

Jakob_PBI_0-1682671375033.png

Jakob_PBI_1-1682671402697.pngJakob_PBI_2-1682671415774.png

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi,

 

According to your statement, I think you want [new stock level] returns 1840 in Feb 2023.

Try measure as below.

new stock level =
IF (
    ISBLANK ( [demand_qty] ),
    BLANK (),
    CALCULATE (
        [inbound_qty] + [stock level static] - [demand_qty],
        FILTER ( ALL ( _dimdate ), _dimdate[Date] <= MAX ( _dimdate[Date] ) )
    )
)

 

Best Regards,

Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi,

 

According to your statement, I think you want [new stock level] returns 1840 in Feb 2023.

Try measure as below.

new stock level =
IF (
    ISBLANK ( [demand_qty] ),
    BLANK (),
    CALCULATE (
        [inbound_qty] + [stock level static] - [demand_qty],
        FILTER ( ALL ( _dimdate ), _dimdate[Date] <= MAX ( _dimdate[Date] ) )
    )
)

 

Best Regards,

Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.