Microsoft
Software
Hardware
Network
Question : How change display in query sql statement
I have a query written as follows:
SELECT tblShipments.DateShpd, tblShipments.PO, tblShipments.PartN, tblShipments.ShipQty, IIf(IsNull([SumOfQtyCast])
,0,[SumOfQ
tyCast]) AS [Cast], IIf(IsNull([Scrap]),0,[Scr
ap]) AS [Total Scrap], tblPartsMasters.Pattern_Ty
pe, tblPartsMasters.Flask_Size
, tblPartsMasters.CPC, tblPartsMasters.Weight_Cst
g, tblPartsMasters.Metal, tblOpenOrders.Each_Price
FROM (((tblShipments LEFT JOIN qryTotalCastAllParts ON tblShipments.OpenOrderRecI
D = qryTotalCastAllParts.OpenO
rdRecID) LEFT JOIN qryTotalScrapAllParts ON tblShipments.OpenOrderRecI
D = qryTotalScrapAllParts.Open
OrdRecID) LEFT JOIN tblPartsMasters ON tblShipments.PartN = tblPartsMasters.Part_No) LEFT JOIN tblOpenOrders ON tblShipments.OpenOrderRecI
D = tblOpenOrders.RecID
WHERE (((tblShipments.DateShpd) Between #1/1/2007# And #12/31/2009#));
But, for example, where the resulting query displays "Total Scrap" I want it to display just "Scrap". How do I do this?
--Steve
Answer : How change display in query sql statement
Have you tried removing the word Total:
IIf(IsNull([Scrap]),0,[Scr
ap]) AS [Scrap]
Random Solutions
Using IEAK8 to deploy IE8 to client computers
Unable to change case in the last column of a table through VBA
Excel VBA - Use solver purely programmatically
Problems when using static lib - MS VC++
SQL Server Dynamic Procedure Design
Setting Query Analyzer message display buffering
Windows 7 Local Lan Browsing Painfully Slow
Strange Excel Error: "Insufficient system resources"
Cisco 1760 router has 2 flash
Keyboard shortcut to close database window