use if statement in excel formula to populate adjacent from list?

L

Larry 44

Is it possible to create a formula using an if statement to populate an
adjacent cell from a list/dropdown of text?
 
G

Gord Dibben

The IF statement would have to be in the adjacent cell. Formulas cannot
push results to another cell.

How many items to choose from in the dropdown?

If many, probably best to go with a lookup table and a VLOOKUP formula in
the adjacent cell.

If only a few you could use something like this.

=LOOKUP(B1,{"one","two","three","four"},{"A","B","C","D"})


Gord Dibben MS Excel MVP


On Sun, 7 Dec 2008 12:18:08 -0800, Larry 44 <Larry
 

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