If someone can help me get this to work I'll be able to know how much money I'll have on me on any day of the year. I'm putting all my bills for the year on the Bills sheet, and I'll list their amounts by their due dates (or how much and when I intend to pay) on a dated column on the current sheet (called Money). And I'll contrast that by the money I'll have incoming. It will be perfect with this formula. Thanks!
K2 = the cell for which the result of the formula will be in
A2 = date on the sheet
Bills!B30 = amount due
Bills!B31 = amount paid
Bills!B32 = date due
Bills!B33 = date paid
if "Bills!B33" is Blank then
if A2 = Bills!B32
if Bills!B31 is blank then
let the amount displayed in K2 equal Bills!B30
else
let the amount displayed in K2 equal Bills!B31
end if
end if
else
if A2 = Bills!B33
if Bills!B31 is blank then
let the amount displayed in K2 equal Bills!B30
else
let the amount displayed in K2 equal Bills!B31
end if
end if
end if
2007-12-23
09:19:34
·
4 answers
·
asked by
Rock
5
in
Business & Finance
➔ Personal Finance
To clarify my intent, the formula goes like this:
if the date paid is blank, then I'm paying on the date due
if the date on this column = the date due
if the amount paid is blank, then I intend to pay the exact amount due
otherwise I'll be paying more or less than the exact amount due
else, if the date paid is not blank
if the date on this column = the date i intend to pay
if the amount paid is blank, then I intend to pay the exact amount due
otherwise I'll be paying more or less than the exact amount due
Its just too complex for me. Any help is much appreciated.
2007-12-23
09:27:06 ·
update #1