Simple Formula needed please!

B

Bob Vance

--
In B1 I want:
If A1 >0 "Overdue Balance", =0" " , <0 "Credit"



Thanks in advance for your help....Bob Vance
 
N

Norman Harker

Hi Bob!

This is how I would attack it:

=IF(A1="","",IF(A1<0,"Credit",IF(A1=0,"Balance","Overdue Balance")))


The base formula:
=IF(A1<0,"Credit",IF(A1=0,"Balance","Overdue Balance"))

Works logically from negative, through zero to positive
This is then nested in a further IF function that returns "" if A1 is
""


--
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

Similar Threads


Top