" " means in IF function

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

Guest

I'm trying to understand what does this mark mean " " in IF function (Logical
test). This has been done in many Excell worksheets but I could not find the
author to ask him. If any one can understand the meaning from the examples
below, please let me know or provide any helpfull material.

=IF(B8-$D$4>0.05,B8-$D$4,IF(A8="","",0))
=IF(E8="","",IF(ABS(D8-E8)<0.05,0,D8-E8))

Thanks
 
The test A8="" is simply asking whether or not there is anything in that
particular cell.
 
It is asking if the cell is empty, if so return an empty cell otherwise
return 0.

--
Ken Russell

(e-mail address removed)
Remove yourhat to reply by e-mail
..
 

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