How would I display the word "Paid" if the value of another cell=

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How would I display the word "Paid" if the value in another cell in the
worksheet had a value greater than 0?
 
=IF(A1>0,"Paid","")

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)
 
=if(a1>0,"Paid","Not Paid")

would be one way.


How would I display the word "Paid" if the value in another cell in the
worksheet had a value greater than 0?
 
One way:

Assume you want "Paid" to show up in cell B1 if cell A1 > 0. Then enter
this in cell B1:

=IF(A1>0,"Paid","")
 

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

Back
Top