Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default formula that strips the first letter of the first name in a cell

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,501
Default formula that strips the first letter of the first name in a cell

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5,651
Default formula that strips the first letter of the first name in a cell

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default formula that strips the first letter of the first name in a ce

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,501
Default formula that strips the first letter of the first name in a ce

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Formula to remove a letter from one cell to another KLAOI Excel Discussion (Misc queries) 1 June 20th 07 04:56 PM
Formula with first letter in cell Wanna Learn Excel Discussion (Misc queries) 3 March 29th 07 06:34 PM
Formula-Cell has a letter (C=100, M=1,000) and needs to divide? Judy Excel Worksheet Functions 2 June 8th 06 06:54 AM
if a cell = a particular letter or even contains that letter Brian Excel Worksheet Functions 3 February 28th 05 05:58 AM
Function / formula to be used if cell contains a letter. Cameron Stewart Excel Worksheet Functions 2 November 2nd 04 12:12 AM


All times are GMT +1. The time now is 05:25 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"