if formula help please!!

T

The Simeons

Can ne1 help me with a formula please.

I have a payment shedule which shows how much people have paid off a certain
amount. I want the columns underneath to show a "0" value if the amount
outstanding is above 1. Cna ne1 help please. TY
 
N

Norman Harker

Hi!

You'll have a normal formula that keeps track of the balance. So you
just need to modify:

=IF(CellAbove=0,0,IF(CellAbove>1,0,NormalFormula))

The nested IF function returns 0 if the cell above is greater than
zero. The trouble is that in the next cell the 0 will read as not >1.
That's why we nest it in another IF function that returns 0 if the
cell above is already zero.

--
Regards
Norman Harker MVP (Excel)
Sydney, Australia
(e-mail address removed)
Excel and Word Function Lists (Classifications, Syntax and Arguments)
available free to good homes.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top