VLOOKUP and single Characters

S

Sean NWIC

Here is my Equation

In Sheet 2, column 3, is First name: i would like for only the first
character of the name to come up
and for the column 2, for only the first four characters to show.

=VLOOKUP(R1,Sheet2!$A$2:$G$1138,3,FALSE)&"
"&VLOOKUP(R1,Sheet2!$A$2:$G$1138,2,FALSE)

Can you help me? :)
 
J

Jacob Skaria

Try

=LEFT(VLOOKUP(R1,Sheet2!$A$2:$G$1138,3,FALSE),1)&"
"&LEFT(VLOOKUP(R1,Sheet2!$A$2:$G$1138,2,FALSE),4)

If this post helps click Yes
 
S

Sean NWIC

How can I make them all Capital letters?


Jacob Skaria said:
Try

=LEFT(VLOOKUP(R1,Sheet2!$A$2:$G$1138,3,FALSE),1)&"
"&LEFT(VLOOKUP(R1,Sheet2!$A$2:$G$1138,2,FALSE),4)

If this post helps click Yes
 
J

Jacob Skaria

=UPPER(LEFT(VLOOKUP(R1,Sheet2!$A$2:$G$1138,3,FALSE),1)&"
"&LEFT(VLOOKUP(R1,Sheet2!$A$2:$G$1138,2,FALSE),4))

If this post helps click Yes
 

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