Expression

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

Guest

In Lotus123 there is an expression like
@if(A17>" ","Cell is NOT blank","Cell is blank")
Please show how to co this with Excell !
Thanks
 
Depending on what you really want
=IF(ISBLANK(A17, "Cell is blank", "Cell is NOT blank")

=IF(TRIM(A17)="", "Treat as if Empty","Cell is NOT blank")

However if the cell has a formula then it is not blank, if it has a space
it is not blank, if it has a null string then it is not blank (meaning it is not empty).
 
Hello David
Thanks for your reply

In C17 I placed =if(isblank(A17,"====",A17-B17)
In A17 is -300.00 and in B17 is 0.00
I keep getting a positive result of 300 in C17
How can I fix this to get -300.00 in C17
Thanks
(e-mail address removed)
 
Sorry I left out a paren, don't see how you got anything out of it at all
A17: -300
B17: 0.00
C17 =IF(ISBLANK(A17),"====",A17-B17) [-- displays -300 --]
 

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

Lotus to Excell 2
Vlookup from a drop down list 2
IF and Vlookup? 3
Excel Import Comments 3
Help needed 0
Cell subtraction 3
Excel Concatenate with line breaks but ignore blank cells 3
Array formula copying blanks as zero’s 5

Back
Top