Nesting A Function

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

This formula returns a value form a lookup table in my workbook. I would like
the returned value to be in upper case...How do I modify the formula to allow
for this?

=IF(ISERROR(VLOOKUP(H3780,Tivoli,5,FALSE)),"",MID(VLOOKUP(H3780,Tivoli,5,FALSE),1,9))

Thanx
 
There are smarter ways, but by far the easiest is:

=UPPER(=IF(ISERROR(VLOOKUP(H3780,Tivoli,5,FALSE)),"",MID(VLOOKUP(H3780,Tivoli,5,FALSE),1,9)))

--

Kind Regards,

Niek Otten

Microsoft MVP - Excel
 

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

Similar Threads


Back
Top