Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I dont know if this can be done but how can I do this....
let's say in cell A1 I have the value "John" cell B1 I have the value "Smith" Can I write a formula to create this in cell C1 "JSmith" I guess it would be something like this = ????? + B1 |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try
=LEFT(A1,1)&B1 Mike "Cluce" wrote: I dont know if this can be done but how can I do this.... let's say in cell A1 I have the value "John" cell B1 I have the value "Smith" Can I write a formula to create this in cell C1 "JSmith" I guess it would be something like this = ????? + B1 |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Tue, 23 Jun 2009 07:47:02 -0700, Cluce
wrote: I dont know if this can be done but how can I do this.... let's say in cell A1 I have the value "John" cell B1 I have the value "Smith" Can I write a formula to create this in cell C1 "JSmith" I guess it would be something like this = ????? + B1 =LEFT(A1)&B1 --ron |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thanks. This works too.
=CONCATENATE(MID(A2,1,1),B2) "Mike H" wrote: Try =LEFT(A1,1)&B1 Mike "Cluce" wrote: I dont know if this can be done but how can I do this.... let's say in cell A1 I have the value "John" cell B1 I have the value "Smith" Can I write a formula to create this in cell C1 "JSmith" I guess it would be something like this = ????? + B1 |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
The & symbol means concatenate and while MID does work i would still recommend LEFT for removing the leftmost character. Mike "Cluce" wrote: Thanks. This works too. =CONCATENATE(MID(A2,1,1),B2) "Mike H" wrote: Try =LEFT(A1,1)&B1 Mike "Cluce" wrote: I dont know if this can be done but how can I do this.... let's say in cell A1 I have the value "John" cell B1 I have the value "Smith" Can I write a formula to create this in cell C1 "JSmith" I guess it would be something like this = ????? + B1 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Formula to remove a letter from one cell to another | Excel Discussion (Misc queries) | |||
Formula with first letter in cell | Excel Discussion (Misc queries) | |||
Formula-Cell has a letter (C=100, M=1,000) and needs to divide? | Excel Worksheet Functions | |||
if a cell = a particular letter or even contains that letter | Excel Worksheet Functions | |||
Function / formula to be used if cell contains a letter. | Excel Worksheet Functions |