Would you look at your original description and check it closely - something
doesn't look right to me (or else I should have stayed out of this entirely).
You say that A1 is the borrowing limit - a varying amount.
Down in A4 your say the formula is =A1-A3+varying amount
since the varying amount is in A1, isn't this the same as saying =(2*A1)-A3
But that doesn't seem correct, since A3 is the loan balance. Here's what
doesn't look right to me. Lets say we have the following (and ignore the
circular reference issues for the moment)
A1 = 25000
A2 =A4-1
A3 = A2+A1
A4 = A1 - A3 + A1
I guess I'm confused about A2, "Loan Advance" - what the heck is that? An
amount requested?
In any case, if they've already borrowed the limit of 25000, then in A4 you
have this calculation: =25000 - 25000 + 25000
which will show them still having 25000 as the amount of advance available.
They will never run out of credit until about the time they've borrowed twice
their limit? Can I get a card issued to me? <g>
Seems to me the simple set up may be:
A1 = Borrowing Limit
A2 = ?? Requested Advance (assumes so later)
A3 = Current Balance
A4 = A1 - A2+A3
and if A4 shows a negative amount, it means they're overdrawn already and
there is no advance available. Example with values in []
A1 = Borrowing Limit [25000]
A2 = Requested Advance [5000]
A3 = Current Balance [19000]
A4 = A1 - A2+A3 [25000 - (5000+19000) = 25000-24000 = 1000 Available]
So they can only have $1000 even though they requested $5000.
I think I might have set up the following:
A1 = Limit [25000]
A2 = Advance Requested [300]
A3 = Current Balance [20000]
A4 = Advance Available [=A1-A3] [5000]
A5 = Can Advance formula: =IF(A4<0,0,MIN(A2,A4))
[300; i.e. can advance the requested $300]
Another situation:
A1 = Limit [25000]
A2 = Advance Requested [6000]
A3 = Current Balance [20000]
A4 = Advance Available [=A1-A3] [5000]
A5 = Can Advance formula: =IF(A4<0,0,MIN(A2,A4)) [5000; i.e. can only
advance 5000 of the requested $6000]
vernors said:
Please help me with the following. This is in Excel 2003.
The actual business process revolves around loan funding and setting loan
advance amounts. Below A1 is borrowing limit, A2 is loan advance, A3 is loan
balance, A4 is advance availability
cell A1 = varying amount
cell A2 = A4 - 1
cell A3 = A2 + varying amount
cell A4 = A1-A3 + varying amount
This is circular, but I believe that I need that. We want the advance A2 to
be as large as possible and A4 to be 1 each day. And I would like these
figures to update when the varing amounts change. Thanks.