J
jmd
I have developed a query to calculate a running total for
a simple savings account.
Field Name: TransDate
Field Name: Transaction
Field Name: Transtype (-1 for withdrawals and 1 for
deposits)
Bal: DSum("[transaction]*
[transtype]","tblsavingstable","DatePart('m', [transdate])
<=" & [AMonth] & " And DatePart('d', [transdate])<=" &
[Aday] & "")
AMonth: DatePart("m",[TransDate])
ADay: DatePart("d",[transdate])
I need the interest to calculate daily at a rate of .004
with or WITHOUT transactions. I've tried a variety of
combinations of queries, reports, and VB with no
success. Any help would be much appreciated.
a simple savings account.
Field Name: TransDate
Field Name: Transaction
Field Name: Transtype (-1 for withdrawals and 1 for
deposits)
Bal: DSum("[transaction]*
[transtype]","tblsavingstable","DatePart('m', [transdate])
<=" & [AMonth] & " And DatePart('d', [transdate])<=" &
[Aday] & "")
AMonth: DatePart("m",[TransDate])
ADay: DatePart("d",[transdate])
I need the interest to calculate daily at a rate of .004
with or WITHOUT transactions. I've tried a variety of
combinations of queries, reports, and VB with no
success. Any help would be much appreciated.