i have to tables
1...... table1(ID autonumber ,CUSTOMERNAME text)
2..... table2(ID number, DATE date/time,DEBIT currency,CREDIT currency,BALANC E currency)
table1 ID have 1 to many relationship with table2 ID
i need running sum for balance column looks like
ID DATE DEBIT CREDIT BALANCE
1 1/1/11 1000 0 1000
1 1/2/11 2000 1000 2000
1 1/3/11 0 500 1500
1...... table1(ID autonumber ,CUSTOMERNAME text)
2..... table2(ID number, DATE date/time,DEBIT currency,CREDIT currency,BALANC E currency)
table1 ID have 1 to many relationship with table2 ID
i need running sum for balance column looks like
ID DATE DEBIT CREDIT BALANCE
1 1/1/11 1000 0 1000
1 1/2/11 2000 1000 2000
1 1/3/11 0 500 1500
Comment