How do I capitalize and parse in the same formula?

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

Guest

I need to write a formula that does 2 functions, LEFTand UPPER. Is this
possible?
I need to "grab" the first three leeters of a word and capitalize them to
add to numbers to create a part number.

Thanks in advance....
 
=UPPER(LEFT(A1,3))

--
Regards,

Peo Sjoblom

(No private emails please)
 
=upper(left(a1,3))&"1234"
or maybe:
=upper(left(a1,3))&text(b1,"0000")

if b1 contains a number.
 

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

Back
Top