K
kdw
I have a design issue that I hope someone can give some input. Perhaps this
can be solve with some type of query but I haven't an idea how.
Let say some one owes a debt of $2000. Each payment he pays back goes back
to multiple debtors who have different priority to the debt. For example,
the first debtor is entitled to $1200, the 2nd $300, the 3rd $500. So when
we receive a payment, we want to see this:
P1 P2 P3 Bal
--------------------------------------
Orig $1200 $300 $500 $2000
pymt -500 -500
--------------------------------------
700 300 500 1500
pymt -700 -200 -900
--------------------------------------
0 100 500 600
Can this be done for an on screen display in real time in some sort of
"grid"? I am not talking about a printed report. None of the solutions I
came up with is dynamic. Does anyone have a suggestion? Thank you.
can be solve with some type of query but I haven't an idea how.
Let say some one owes a debt of $2000. Each payment he pays back goes back
to multiple debtors who have different priority to the debt. For example,
the first debtor is entitled to $1200, the 2nd $300, the 3rd $500. So when
we receive a payment, we want to see this:
P1 P2 P3 Bal
--------------------------------------
Orig $1200 $300 $500 $2000
pymt -500 -500
--------------------------------------
700 300 500 1500
pymt -700 -200 -900
--------------------------------------
0 100 500 600
Can this be done for an on screen display in real time in some sort of
"grid"? I am not talking about a printed report. None of the solutions I
came up with is dynamic. Does anyone have a suggestion? Thank you.