Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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? :-) |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 --------------- Jacob Skaria "Sean NWIC" wrote: 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? :-) |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How can I make them all Capital letters?
"Jacob Skaria" wrote: 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 --------------- Jacob Skaria "Sean NWIC" wrote: 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? :-) |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Put UPPER( ... ) around the formula that Jacob gave you.
Hope this helps. Pete On Sep 2, 7:11*pm, Sean NWIC wrote: How can I make them all Capital letters? "Jacob Skaria" wrote: 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 --------------- Jacob Skaria "Sean NWIC" wrote: 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? :-)- Hide quoted text - - Show quoted text - |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=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 --------------- Jacob Skaria "Sean NWIC" wrote: How can I make them all Capital letters? "Jacob Skaria" wrote: 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 --------------- Jacob Skaria "Sean NWIC" wrote: 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? :-) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How many characters can go into a single cell in Excel? | Excel Discussion (Misc queries) | |||
Change text to a single characters | Excel Worksheet Functions | |||
count of tab characters in a single cell | Excel Worksheet Functions | |||
How do you count number of characters in a single cell | Excel Worksheet Functions | |||
Remove single text characters | Excel Discussion (Misc queries) |