Nesting IF statements

M

me

I have a series of numbers representing sixteen bit binary:

0010110110001001
0011111110001001
0100000100010001
0100010011010000
In the next column I have a formula: =IF(BIN2DEC(MID(A1,2,1))=1, "NET",
"OpID")

The contents of the third column would depend on the result of this formula
such that if the second contains "OpID" this one will contain "Private".
However, if the second column value is "NET" then I need to look at
BIN2DEC(MID(A1,3,2))) and make the third column value "National" if this
evaluates to 1 or 2 but "Private" if any other value is returned.

Is it possible to nest If statements to do this or would I have to evaluate
it in separate steps?
 
B

Bob Phillips

=IF(B1="NET",IF(OR(BIN2DEC(MID(A1,3,2))=1,BIN2DEC(MID(A1,3,2))=2),"National"
,"Private"),"Private")

--

HTH

Bob Phillips

(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

Top