Forum Discussion

vrossouw's avatar
vrossouw
Icon for Helper III rankHelper III
6 years ago

Accummulated total, but start from zero

Hi, 

I have the below table, where the SOH Pre purchase is the running total of SOH start + Manufacture Qty - Units Sold.

However, in some cases, we do not have stock and then have to purchase the quantity to be able to sell to the customer.

At which point our stock on hand is zero.

My problem is in line 3... where we manufacture 9 items. What should the correct formula be for SOH  After Purchase? To take into account purchase stock as well?

 

Thank you in advance

 

ItemDateSOH StartManufacturing Qty Units Sold SOH Pre PurchasePurchase QuantitySOH  After Purchase
k90008A01 January 2019               -  00000
k90008A16 January 2019 09-990
k90008A17 January 2019 90000
k90008A18 January 2019 26026026
k90008A15 May 2019 10036036
k90008A27 May 2019 0234034
k90008A09 July 2019 9043043
k90008A11 July 2019 0934034
k90008A08 February 2021 9043043
k90008A10 February 2021 5048048
k90008A12 February 2021 01038038
k90008A10 March 2021 9047047

5 Replies

  • Anonymous's avatar
    Anonymous
    Not applicable

    If I understand your request correctly, you can simply create “SOH After Purchase” column by adding the “Purchase Quantity” column after the cumulative total.

     

    SOH Pre =
    CALCULATE (
        SUM ( Table[Manufacturing Qty ] ),
        FILTER ( Table, [Date] <= EARLIER ( Table[Date] ) )
    ) - Table[Units Sold ]
    SOH after =
    CALCULATE (
        SUM ( Table[Manufacturing Qty ] ),
        FILTER ( Table, [Date] <= EARLIER ( Table[Date] ) )
    ) - Table[Units Sold ] + Table[Purchase Quantity]

     

     

    Best,
    Paul

    • vrossouw's avatar
      vrossouw
      Icon for Helper III rankHelper III

      Hi, the problem is that the purchase quantity, is a calculated quantity.

      For example if the shortfall in units are 9, such as in line 2, the 9 units must be purchased.

      My problem is to add these additional 9 units then back into the running stock on hand quantity.

       

       

      • Anonymous's avatar
        Anonymous
        Not applicable

        vrossouw 

        You are able to add the additional Purchase Quantity back to the running total by simple adding even it is calculated column.

        I don't really get what do you mean, can you provide a sample pbix and show us the expected result in the columns.


        Best,
        Paul