Thank you so much for responding. I copied the SQL statement (below).
The
line
"tbl_Inventory!UnitsReceived-tbl_Inventory!UnitsShipped AS UnitsInStock,"
is
the one that appears to me to be correct as far as the expression is
concerned.
The query displays a table, and displays a column for "UnitsInStock",
along
with the "UnitsReceived" and "UnitsShipped". But there is nothing in the
UnitsInStock column. I have not checked the SQL statement in the 2007
version, and I will check that, but I can't determine why this would work
in
the 2007 version and not in 2003. I'm more familiar with 2007, but my
client
is using 2003. Any assistance you can offer is greatly appreciated!
SELECT tbl_Inventory.PartNumber, tbl_Inventory.SerialNumber,
tbl_Inventory.IndexCode, tbl_Inventory.Sponsor, tbl_Inventory.Program,
tbl_Inventory.DivisionCode, tbl_Inventory.Requisition, tbl_Inventory.EMR,
tbl_Inventory.PurposeCode, tbl_Inventory.UnitOfIssue,
tbl_Inventory.UnitCost,
tbl_Inventory!UnitsReceived-tbl_Inventory!UnitsShipped AS UnitsInStock,
tbl_Inventory.UnitsReceived, tbl_Inventory.UnitsShipped,
tbl_Inventory.Building, tbl_Inventory.Location,
tbl_Inventory.[Warehouse#],
tbl_Inventory.NHA, tbl_Inventory.ConditionCode,
tbl_Inventory.DateModified,
tbl_Inventory.UserModified
FROM tbl_Inventory;