Help With The Upper Function

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

Guest

Hello,

I need some help with using the UPPER function....in this formula I need to
convert the text "Global Trade" to upper case, where inside the formula do I
place the UPPER funtion?

=IF(IF(ISERROR(VLOOKUP(H3780,Tivoli,4,FALSE)),"",MID(VLOOKUP(H3780,Tivoli,4,FALSE),1,15))="applications","Global
Trade",IF(ISERROR(VLOOKUP(H3780,Tivoli,4,FALSE)),"",MID(VLOOKUP(H3780,Tivoli,4,FALSE),1,15)))

Thanx
 
=IF(IF(ISERROR(VLOOKUP(H3780,Tivoli,4,FALSE)),"",MID(VLOOKUP(H3780,Tivoli,4,
FALSE),1,15))="applications",UPPER("Global
Trade"),IF(ISERROR(VLOOKUP(H3780,Tivoli,4,FALSE)),"",MID(VLOOKUP(H3780,Tivol
i,4,FALSE),1,15)))


--

HTH

RP
(remove nothere from the email address if mailing direct)
 
GREAT that worked...thank you so much...still learning nesting
functions...gets confusing...okay once more question...in this case, I need
what is returned from tivoli,5 in upper case where would I place the UPPER
function? Would it go somewhere before or after MID?

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

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

UPPER Function 1
Nesting A Function 3
Combining Functions 3
Syntax Help 7
Vlook-up in report with column Expansion 5
Iserror with if(or & Vlookups 5
Converting Numeric values to Text 2
Help With VLOOKUP 2

Back
Top