Help on Sum

L

Lalit

Hi,

I would like to add some fields (data) of the same column with reference to
the identical time,which is another column.In more detail : My query has two
column, one time in hh:mm:00 for and second coloun the some counts.I want to
add all counts (of same time) in third column. Please help on this.

Thanks:

Lalit
 
K

KARL DEWEY

SELECT YourTimeField, Sum([YourCounts]) AS SumOfCoumnts
FROM YourTable
GROUP BY YourTimeField;
 

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

Top