Hi, I've got the following saved for running sums in continuous forms:
SELECT Table1.asd, DSum("[asd]","table1","[AN]<=" & [AN]) AS RunningSum
FROM Table1;
Your table needs an incrementing number, like an autonumber field for this to work. Create a table - Table1. Create one field -ASD & make it Numeric.
Create another field - AN & Make it an autonumber.
Enter a few numbers into the ASD field.
Create a query in design view. Select: View - SQL View and paste the select statement above into it. The results should be what you're looking for.
Hope that helps.