summation

  • Thread starter Thread starter Guest
  • Start date Start date
From you example, you could create a group by or distinct query and then a
totals query that sums the distinct values.
=== qgrpSomeData ===
SELECT DISTINCT [some data]
FROM [No Name Given];
Then
=== qtotSomeData ===
SELECT Sum([some data]) as SumSome
FROM qgrpSomeData;
 

Ask a Question

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.

Ask a Question

Back
Top