limit of 7 nested functions?

O

Olympiad

I have the following formula working well, however as there is a limit of 7
nested functions and need some more, what is my options?

=IF(B5="P-NE","Pre App Not Endorsed",IF(B5="P-PI","Pre App Pending
Info",IF(B5="P-WD","Pre App
Withdrawn",IF(B5="WFIN","Withdrawn",IF(B5="PREP","App Being
Prepared",IF(B5="PFI","App Pending Further Info",IF(B5="PDD","App Pending D&D
report",IF(B5="PID","App",))))))))
 
N

Niek Otten

Use the Vlookup function instead.
Look in Help for details, post back in this thread if you have problems.

--

Kind Regards,

Niek Otten

Microsoft MVP - Excel
 
O

olympiad

With the limit of 7 nested function on the formula below, I am still
struggling with a solution how to add several more for the purpose of my
workbook. The aim of this is that I have for example in cell B5 a variety of
abreviations (codes) that I would like to appear in another cell with as a
full description.
 
M

mangesh_yadav

Hi olympiad,

As Niek Otten replied, use vlookup. Lets say you save your list of
codes and their description in a table in range A1:B10. e.g.
Col A | Col B
P-NE | Pre App Not Endorsed
P-PI | Pre App Pending Info
P-WD | Pre App Withdrawn
and so on...

In your formula use:
=VLOOKUP(B%,A1:B10,2)


Mangesh
 

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