EXCEL TOOLS
Excel Add-ins ที่พัฒนาโดยคุณสันติพงศ์ ณสุย (MVP Excel 2010-2020) ด้วยภาษา C# เพื่อแก้ไขปัญหาไฟล์ใหญ่ คำนวณนาน ทำงานช้า จัดการข้อมูลต่าง ๆ ที่ทำงานประจำวันได้อย่างสะดวกรวดเร็ว สนใจคลิกไปดูได้ที่นี่ครับ => Excel Tools
Excel Add-ins ที่พัฒนาโดยคุณสันติพงศ์ ณสุย (MVP Excel 2010-2020) ด้วยภาษา C# เพื่อแก้ไขปัญหาไฟล์ใหญ่ คำนวณนาน ทำงานช้า จัดการข้อมูลต่าง ๆ ที่ทำงานประจำวันได้อย่างสะดวกรวดเร็ว สนใจคลิกไปดูได้ที่นี่ครับ => Excel Tools
[code]
และปิดด้วย [/code]
ตัวอย่างเช่น [code]dim r as range[/code]
เพื่อให้แตกต่างจากข้อความทั่วไป สะดวกในการอ่านและทดสอบ (คลิกเพื่อดูตัวอย่างเพิ่มเติม)Code: Select all
SELECT [Status]
,[No_]
,[Description]
,[Blocked]
,[Item No_]
,Description
,[Sum Qty_ Consumption]
,[Sum Qty_ Consumption] + Quantity as [remining]
,coalesce(case when ([Sum Qty_ Consumption] + Quantity) = 0 then 0
when ([Sum Qty_ Consumption] + Quantity) = NULL then [Sum Qty_ Consumption]
when ([Sum Qty_ Consumption] + Quantity) > 0 then [Sum Qty_ Consumption] + Items_ledger.Quantity
when ([Sum Qty_ Consumption] + Quantity) < 0 then 0
end,[Sum Qty_ Consumption]) as [Reserv_Paper]
FROM [dbo].[$Production Order] prod_order
Code: Select all
SELECT * FROM
(
SELECT [Status]
,[No_]
,[Description]
,[Blocked]
,[Item No_]
,Description
,[Sum Qty_ Consumption]
,[Sum Qty_ Consumption] + Quantity as [remining]
,coalesce(case when ([Sum Qty_ Consumption] + Quantity) = 0 then 0
when ([Sum Qty_ Consumption] + Quantity) = NULL then [Sum Qty_ Consumption]
when ([Sum Qty_ Consumption] + Quantity) > 0 then [Sum Qty_ Consumption] + Items_ledger.Quantity
when ([Sum Qty_ Consumption] + Quantity) < 0 then 0
end,[Sum Qty_ Consumption]) as [Reserv_Paper]
FROM [dbo].[$Production Order]
) prod_order
WHERE [Reserv_Paper] != 0