I need to write either a query or VB to calculate daily interest on a
simple savings account. I use the following formula(s) to calculate
the running balance for each transaction.
Transdate
Transaction
Bal: DSum("[transaction]*[transtype]","tblsavingsta ble","DatePart( 'm',
[transdate])<=" & [AMonth] & " And DatePart('d', [transdate])<=" &
[Aday] & "")
AMonth: DatePart("m",[TransDate])
ADay: DatePart("d",[transdate])
I need the interest to be calculated with or WITHOUT transactions.
I've attacked this problem by using queries, some VB, reports, etc.
with no success. Any help would be appreciated.
simple savings account. I use the following formula(s) to calculate
the running balance for each transaction.
Transdate
Transaction
Bal: DSum("[transaction]*[transtype]","tblsavingsta ble","DatePart( 'm',
[transdate])<=" & [AMonth] & " And DatePart('d', [transdate])<=" &
[Aday] & "")
AMonth: DatePart("m",[TransDate])
ADay: DatePart("d",[transdate])
I need the interest to be calculated with or WITHOUT transactions.
I've attacked this problem by using queries, some VB, reports, etc.
with no success. Any help would be appreciated.
Comment