Here is the SQL for question above, if this will help.
SELECT tblItemMaster.PartNmbr, tblItemMaster.ItemClass, "1" AS [Level 1], tblBOM.ChildClass, tblBOM.ChildPartNmbr, tblBOM.QtyReq, "2" AS [Level 2], tblBOM_2.ChildClass, tblBOM_2.ChildPartNmbr, tblBOM_2.QtyReq, "3" AS [Level 3]...
I have a self join query that creates a bill of material for 6 levels deep. The fields are:
PartNmbr
Item Class
Level
ChildPartNmbr
QtyReq
The above fields repeat 5 times. I want to sum the "QtyReq" for each parent part number ("PartNmbr") where "Item Class = 43" for each "ChildPartNmbr" on...
Hello,
I get error '3024', Could not find file 'G:\...' when I try both of these pieces of code. I have checked the spelling and the file is there. Please help.
#1
Public Sub LoadTables()
Dim strSQL As String
Dim dbAAPCost As Database
Set dbAAPCost = CurrentDb
strSQL = "INSERT INTO tblBOM...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.