john3j
09-18-2009, 07:39 AM
I have an access database where I have multiple queries that I have created in SQL view to produce a count number, more particularly, a count of the number of records meeting a certain criteria. One of the queries looks like the following in SQL view:
SELECT Count(*) As [Count Test]
FROM [Count Test]
My question is how do I created another query that will subtract the values produced by two queries? For instance Count Test1 - Count Test2 = Count Test3
I would appreciate any help. Thank you!
SELECT Count(*) As [Count Test]
FROM [Count Test]
My question is how do I created another query that will subtract the values produced by two queries? For instance Count Test1 - Count Test2 = Count Test3
I would appreciate any help. Thank you!