Sacha has attended:
Excel VBA Intro Intermediate course
Access Introduction course
Query Sums
How do I automatically sum amounts in a query?
RE: Query Sums
Hi Sacha
You can do this in the SQL within MS Access. The code you need will be very similar to:
Select sum(myfield) From mytable
Hope this helps
David