Record calculating

prose7777

New member
Local time
Today, 16:06
Joined
Dec 15, 2003
Messages
9
HI,

how can i take the sum of a previous record and another variable to it . then place the result on another record and repeat the process with the next record

EX. record1+variable=record2
record2+diffrent variable= record 3
ect.....

i am useing Access 2000
 
If, by chance, your records are all consecutively numbered, then you can do a self-join query. Join the table to itself where [table1].[no]=[table2].[no]-1

That way, you can access a previous record value from the current record.
 
Can this also be done in a form ?
 
The form cannot do these types of calculations (though you could display the results on the form by using the query).
 

Users who are viewing this thread

Back
Top Bottom