Summation of a column using certain conditions

Below is my table:

Part_Key Part_No Job_No Operation_No Operation_Code Supplier_Code Location_Type Available_Inventory Location Summation
6356413 10BAE005-001 9372 10 Stamp – WIP – Std Production null null 432 150-01-01-01
6356413 10BAE005-001 9372 20 First Wash null null 2000 MET-065
6356413 10BAE005-001 9372 30 Deburr null null 3700 DBR001-006
6356413 10BAE005-001 9372 30 Deburr null null 4000 MET-065
6356413 10BAE005-001 9372 40 Heat Treat MET-065 Subcontractor 3600 633-01-01-01
6356413 10BAE005-001 9372 50 Second Wash null null null null
6356413 10BAE005-001 9372 60 Phos and Oil PRO-060 Subcontractor 5000 PRO-060
6356413 10BAE005-001 9372 70 Re-pack null null null null

I need to add a “Summation” column by replacing “Available_Inventory” column in such a way that it satisfies below conditions:

  1. Summation till the rows above.
  2. If inventory is already at the subcontractor of that line, then don’t include in the summation.
  3. Don’t include the quantity which are already at the Subcontractor level.

(E.g. here the inventory count at Operation_No “40” should be 432+3700 = 4132
and inventory count at Operation_No “60” should be 432+2000+3700+4000+3600 = 13732)

I am able to satisfy first condition by using code:

SELECT
    *, 
    SUM(Available_Inventory) OVER (PARTITION BY Part_No, Job_No 
                                   ORDER BY Operation_No) AS Summation 
FROM #Inventory_Sum

But this does not check condition 2. My biggest drawback here is that I cannot use dynamic query, which restricts me a lot.

This is what I tried:https://dbfiddle.uk/KH9Un8KZ

Can anyone guide me on how can I achieve this task? Or point me to the direction where I can research and find my solution?

10

You can use a CASE expression to control when Available_Inventory is used or 0 for the sum of a row.

Select *, sum(
  CASE Location_Type 
  WHEN 'Subcontractor' THEN 0 ELSE
    CASE WHEN Location in (SELECT Supplier_Code from #Inventory_Sum WHERE Location_Type='Subcontractor') THEN 0 
    ELSE  Available_Inventory END
  END
  ) OVER (PARTITION BY Part_No, Job_No ORDER BY Operation_No) as Summation
  from #Inventory_Sum

fiddle

4

Still trying to understand the logic and guessing that you want an unqualified running sum on rows that aren’t labeled as Subcontractor.

As far as I can tell, you can’t really do this fully with window functions because they can’t be dynamic / conditional upon what’s in the anchor row (or its lead-up rows).

So, this not-very-scalable approach might work; at large table sizes, you might be better off using a cursor or doing this in Excel.

;WITH x AS 
(
  SELECT *, rn = ROW_NUMBER() OVER 
     (PARTITION BY Job_No, Part_No ORDER BY Operation_No) 
  FROM #Inventory_Sum
)
SELECT Part_Key, Part_No, Job_No, Operation_No, Operation_Code,
       Supplier_Code, Location_Type, Available_Inventory, Location,
       Summation = COALESCE
                   (
                     y.ContractorSum, 
                     SUM(Available_Inventory) OVER 
                       (PARTITION BY Job_No, Part_No ORDER BY rn)
                   )
FROM x 
CROSS APPLY
(
  SELECT ContractorSum = SUM(Available_Inventory) 
    FROM x AS x2 
   WHERE x2.Part_No = x.Part_no 
     AND x2.Job_No = x.Job_No
     AND x2.rn < x.rn
     AND x2.Location <> x.Supplier_Code
     AND x.Location_Type = 'Subcontractor'
) AS y
ORDER BY Job_No, Part_No, Operation_No;

I’d show a fiddle, but it’s currently broken. You’ll have to trust me:

If you only want Summation populated for the Subcontractor rows, then remove the COALESCE() and just use y.ContractorSum.

Ok, i think i got it.

You want something like this:

WITH data AS (
    SELECT  *
    FROM    (
        VALUES  (6356413, N'10BAE005-001', 9372, 10, N'Stamp - WIP - Std Production', NULL, NULL, 432, N'150-01-01-01', NULL)
        ,   (6356413, N'10BAE005-001', 9372, 20, N'First Wash', NULL, NULL, 2000, N'MET-065', NULL)
        ,   (6356413, N'10BAE005-001', 9372, 30, N'Deburr', NULL, NULL, 3700, N'DBR001-006', NULL)
        ,   (6356413, N'10BAE005-001', 9372, 40, N'Deburr', NULL, NULL, 4000, N'MET-065', NULL)
        ,   (6356413, N'10BAE005-001', 9372, 50, N'Heat Treat', N'MET-065', N'Subcontractor', 3600, N'633-01-01-01', NULL)
        ,   (6356413, N'10BAE005-001', 9372, 60, N'Second Wash', NULL, NULL, NULL, NULL, NULL)
        ,   (6356413, N'10BAE005-001', 9372, 70, N'Phos and Oil', N'PRO-060', N'Subcontractor', 5000, N'PRO-060', NULL)
        ,   (6356413, N'10BAE005-001', 9372, 80, N'Re-pack', NULL, NULL, NULL, NULL, NULL)
    ) t (Part_Key,Part_No,Job_No,Operation_No,Operation_Code,Supplier_Code,Location_Type,Available_Inventory,Location,Summation)
)
, data2 AS (
    SELECT  *
    ,   ISNULL(Supplier_code,( -- Get supplier for this row
        SELECT  TOP 1 Supplier_code
        FROM    data d2
        WHERE   d2.Part_key = d.Part_Key
        AND d2.Part_no = d.Part_no
        AND d2.Job_no = d.Job_no
        AND d2.Location_type = 'Subcontractor'
        AND d2.Supplier_code = d.Location
        )) AS Supplier_code_new
    FROM    data d
    )
SELECT  *
FROM    data2 d
CROSS APPLY (
        SELECT  SUM(Available_Inventory) AS inv
        FROM    data2 prev
        WHERE   prev.Part_key = d.Part_Key
        AND prev.Part_no = d.Part_no
        AND prev.Job_no = d.Job_no
        AND prev.Operation_no <= d.Operation_no -- Summarize preceding rows
        AND (prev.Supplier_Code_new IS NULL OR prev.Supplier_Code_new <> d.Supplier_Code_new) -- But not for which the supplier is current supplier
    ) x

First, i calculate the supplier for all rows by matching Location against a Supplier_code. The idea is to avoid summarizing these rows, except when calculating another supplier.

Don’t think aggregated subqueries are possible here, because the values are fluid depending on current row.

Output:

Part_Key Part_No Job_No Operation_No Operation_Code Supplier_Code Location_Type Available_Inventory Location Summation Supplier_code_new inv
6356413 10BAE005-001 9372 10 Stamp – WIP – Std Production NULL NULL 432 150-01-01-01 NULL NULL 432
6356413 10BAE005-001 9372 20 First Wash NULL NULL 2000 MET-065 NULL MET-065 432
6356413 10BAE005-001 9372 30 Deburr NULL NULL 3700 DBR001-006 NULL NULL 4132
6356413 10BAE005-001 9372 40 Deburr NULL NULL 4000 MET-065 NULL MET-065 4132
6356413 10BAE005-001 9372 50 Heat Treat MET-065 Subcontractor 3600 633-01-01-01 NULL MET-065 4132
6356413 10BAE005-001 9372 60 Second Wash NULL NULL NULL NULL NULL NULL 4132
6356413 10BAE005-001 9372 70 Phos and Oil PRO-060 Subcontractor 5000 PRO-060 NULL PRO-060 13732
6356413 10BAE005-001 9372 80 Re-pack NULL NULL NULL NULL NULL NULL 4132

Note that i had to change operations, because Deburr was duplicated. If you have such duplicates, you need some other way of distinguishing the order of rows besides Operation_no.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật