summation

I

Import Text File

can i sum some data with its repetions
as for example
100
100
30

it gives me 130
 
D

Duane Hookom

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

Similar Threads


Top