Help With The Upper Function

D

Dmorri254

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
 
B

Bob Phillips

=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)
 
D

Dmorri254

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))
 
M

Myrna Larson

=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
Syntax Question 0
VLOOKUP & Data Validation 0
Vlook-up in report with column Expansion 5
VLOOKUP Not working 3

Top