Greetings,
I have the following code:
do until oAction.EOF
if oAction("trnamount"
< oAction("regfeecharged"
then
unpaid=oAction("regfeecharged"
else
unpaid=0
end if
oAction.MoveNext
Loop
If I response write this out, I get a string of the unpaid fees. What I need is a total of these fees and a count. Is this possible with the result of the loop?
Thanks in advance!
I have the following code:
do until oAction.EOF
if oAction("trnamount"


unpaid=oAction("regfeecharged"

else
unpaid=0
end if
oAction.MoveNext
Loop
If I response write this out, I get a string of the unpaid fees. What I need is a total of these fees and a count. Is this possible with the result of the loop?
Thanks in advance!