Multi-Format IF Statement

G

Guest

I have multiple IF statement connected with the + sign in which the results
are either a number or a statement. An example of a statement with a text
string would be:
+IF(A36="na","not incl",0). When I try running the statement, it will not
show the text string. My first thought was that I couldn't mix number results
with text results. Is there a solution? Any help would be appreciated. Thank
You, JAD
 
G

Guest

Excel uses the equal [=] sign. Lotus used the [+]. change your + to = and
see if it works.
 
B

Bob Phillips

Try

=IF(A36="na","not incl",0)

--
---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
G

Guest

Without seeing what's in A36, my guess would be:
=IF(ISNA(A36),"not incl",0)
because if you see #N/A in A36, that's not the same as "na"
 

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

Top