I've been asked to add the aging onto our customer statements.
cr8.5/vb6/sql7
I'm passing a recordset to CR (via ttx method) and it contains the age of each invoice. recordset looks like this:
CustID Inv# Amt Date Age
1235 100 4.00 3/1/2000 1
1235 101 10.00 3/5/2000 5
1235 130 15.00 6/2/2000 92 (guessing).
1222 100 4.00 3/6/2000 6
After i display my detail records, they want a box that shows the amounts w/in a age range:
0-30: $14.00
31-60:
61-90:
90+: $15.00
How is this accomplished??
cr8.5/vb6/sql7
I'm passing a recordset to CR (via ttx method) and it contains the age of each invoice. recordset looks like this:
CustID Inv# Amt Date Age
1235 100 4.00 3/1/2000 1
1235 101 10.00 3/5/2000 5
1235 130 15.00 6/2/2000 92 (guessing).
1222 100 4.00 3/6/2000 6
After i display my detail records, they want a box that shows the amounts w/in a age range:
0-30: $14.00
31-60:
61-90:
90+: $15.00
How is this accomplished??