PHV,
What I'm saying is that the query qryD3_Install_Data does not have a field called [Item Num]. Here is the SQL for that query, you'll note there is no such field.
SELECT DISTINCT D3_TAG_Data.[Link Number] AS [Link #], D3_TAG_Data.[Customer Number] AS [Customer #], D3_TAG_Data.PO AS [PO #], D3_TAG_Data.[Original Order Number] AS [Order #], D3_Install_Data.[Order Date] AS [Order Date], D3_Install_Data.[Ship Date] AS [Ship Date], D3_TAG_Data.[Invoice Date] AS [Invoice Date], D3_Install_Data.[Order Qty], D3_Install_Data.[Report Line Qty], D3_Install_Data.[Report Line Price], D3_Install_Data.[Report Line Tax], D3_Install_Data.[Report Line Shipping], D3_Install_Data.[Report Line Total], D3_TAG_Data.[Service Tag Number] AS [Service Tag], D3_TAG_Data.[Product Description] AS [Sub Category], D3_TAG_Data.[System Name] AS Category, D3_Install_Data.Item, D3_Install_Data.[Sku Long Name], D3_Install_Data.[Processor Type], D3_Install_Data.[Processor Desc], D3_Install_Data.[Processor Speed (MHz)], D3_Install_Data.[Additional Processor Desc], D3_Install_Data.[Monitor Desc], D3_Install_Data.[Monitor Qty], D3_Install_Data.[Memory 1 Desc], D3_Install_Data.[Memory 1 Qty], D3_Install_Data.[Memory 2 Desc], D3_Install_Data.[Memory 2 Qty], D3_Install_Data.[Hard Drive 1 Desc], D3_Install_Data.[Hard Drive 1 Qty], D3_Install_Data.[Hard Drive 2 Desc], D3_Install_Data.[Hard Drive 2 Qty], D3_Install_Data.[CD/DVD 1 Desc], D3_Install_Data.[CD/DVD 1 Qty], D3_Install_Data.[CD/DVD 2 Desc], D3_Install_Data.[CD/DVD 2 Qty], D3_Install_Data.[OS Desc], D3_Install_Data.[OS Qty], D3_TAG_Data.[Service Contract End Date] AS [Warranty End Date], D3_Install_Data.[Ship First Name], D3_Install_Data.[Ship Last Name], D3_TAG_Data.[Company Name] AS [Ship Company], D3_TAG_Data.[Address 1] AS [Ship Address 1], D3_TAG_Data.[Address 2] AS [Ship Address 2], D3_TAG_Data.City AS [Ship City], D3_TAG_Data.State AS [Ship State], D3_TAG_Data.Zip AS [Ship Zip], Date()-D3_Tag_Data.[Invoice Date] AS Age, IIf(IsNull(PFR_Data!chassistype),IIf(D3_Tag_Data![Product Description]="Optiplex GX270",IIf(D3_Install_Data![Sku Long Name] Like "*SMALL*FORM*FACTOR*","Killerbee",IIf(D3_Install_Data![Sku Long Name] Like "*SMALL*DESKTOP*","Jazz",IIf(D3_Install_Data![Sku Long Name] Like "*SMALL*TOWER*","Skydive","??"))),""),PFR_Data!chassistype) AS Chassis_Old, IIf(D3_Tag_Data![Product Description] In ("Optiplex GX280","Optiplex GX270","Optiplex GX260"),IIf(IsNull(D3_Tag_Data!Chassis),IIf(D3_Install_Data![Sku Long Name] Like "*SMALL*FORM*FACTOR*","Killerbee",IIf(D3_Install_Data![Sku Long Name] Like "*SMALL*DESKTOP*","Jazz",IIf(D3_Install_Data![Sku Long Name] Like "*SMALL*TOWER*","Skydive","??"))),IIf(D3_Tag_Data!Chassis Like "Skydive*","Skydive",IIf(D3_Tag_Data!Chassis Like "Jazz*","Jazz",IIf(D3_Tag_Data!Chassis Like "Killerbee*","Killerbee",D3_Tag_Data!Chassis)))),IIf(PFR_Data!chassistype="Jazz SDT","Jazz",PFR_Data!chassistype)) AS Chassis
FROM ((D3_TAG_Data LEFT JOIN D3_Install_Data ON D3_TAG_Data.[Service Tag Number] = D3_Install_Data.[Service Tag]) LEFT JOIN PFR_Data ON D3_TAG_Data.[Service Tag Number] = PFR_Data.svctag) LEFT JOIN qryChassis_Type_GX270 ON D3_TAG_Data.[Service Tag Number] = qryChassis_Type_GX270.[Svc Tag ID]
WHERE (((D3_TAG_Data.[Service Tag Number])<>"" And (D3_TAG_Data.[Service Tag Number]) Is Not Null));
So the question is, how is this field showing up in the QBE screen's query/table display when it doesn't exist in the query?