IF Formula

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

Guest

Here is the formula that I am using:

=IF(M569<K569,M569+1-K569,M569-K569)

I want to add:

If K569 is blank then "Unknown"

Thanks for any help.

Denise
 
if(M569="","Unknown",IF(M569<K569,M569+1-K569,M569-K569))

try this.

Cody
 
=IF(ISBLANK(K569),"Unknown",IF(M569<K569,M569+1-K569,M569-K569))
 
--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Just for fun

=IF(M569="","Unknown",M569-K569+(M569<K569))

--

HTH

RP
(remove nothere from the email address if mailing direct)
 

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