if function

H

hitesh

dear

if i type 511 in cell A1 then in cell B1 there will be anil,if i type 512 in
cell A1 then in cell B1 there will be sunil. if i type 513 in cell A1 then in
cell B1 there will be amit. if i type 514 in cell A1 then in cell B1 there
will be ritesh.
is there any formula for this.

pls help
 
J

JoeU2004

hitesh said:
if i type 511 in cell A1 then in cell B1 there will be anil,if i type 512
in
cell A1 then in cell B1 there will be sunil. if i type 513 in cell A1 then
in
cell B1 there will be amit. if i type 514 in cell A1 then in cell B1 there
will be ritesh. is there any formula for this.

There are many ways to do this, depending on how robust you want to be about
error conditions, i.e. when A1 is none of those values.

Ignoring error conditions, you could write simply:

=choose(A1-510,"anil","sunil","amit","ritesh")

A little more bullet-proof:

=if(and(511<=A1,A1<=514),choose(A1-510,"anil","sunil","amit","ritesh"),"")

If you might have more than 29 names (the limit for CHOOSE), you might want
to set up a table in a range and use VLOOKUP.
 
G

Gord Dibben

Enter in B1

=LOOKUP(A1,{511,512,513,514},{"anil","sunil","amit","ritesh"})


Gord Dibben MS Excel MVP
 
H

hitesh

JoeU2004 said:
There are many ways to do this, depending on how robust you want to be about
error conditions, i.e. when A1 is none of those values.

Ignoring error conditions, you could write simply:

=choose(A1-510,"anil","sunil","amit","ritesh")

A little more bullet-proof:

=if(and(511<=A1,A1<=514),choose(A1-510,"anil","sunil","amit","ritesh"),"")

If you might have more than 29 names (the limit for CHOOSE), you might want
to set up a table in a range and use VLOOKUP.

thanks a lot.
 

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