You could use the DSum() function. That does actually run a query to do its
job, but if you meant "without running a new query that I have to build"
then that would do it.
My reccollection of subqueries with Access is this--
You can add a subquery and then 'presto' when Access decides that your
query is 'too complex' then it will through a tissy-fit.
That is one of my biggest complaints about MDB.
But you _SHOULD_ be able to do somehting like this
Select OD.*,
(Select Name From Employees E where E.EmployeeID =
OD.SalesPersonID) as SalesPersonName
From OrderDetails OD
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.