Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default how to cut part of a text from one cell and automatically paste itonto another cell

Hello,

Please see below example: I have column A1 which has information
CHI090169094 BKG# 19802749 and I want to extract BKG# 19802749 and
put it into column B1 and delete the information that was in A1 for
BKG# 19802749.
Can someone advise how I can do this. I tried using the formula =LEFT
(A1, 13) and it captures CHI090169094 and pastes into B1 column. But
That's not what I'm looking for. I would like for the formula to
capture BKG# 19802749 from A1 and put it into column B1 and delete
the information that was copied from cell A1.

A1 B1
CHI090169094 BKG# 19802749 BKG# 19802749
CHI090114574 BKG# 18133600
CHI090122224 BKG# 16469485

Thanks,
Sonia
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 698
Default how to cut part of a text from one cell and automatically paste it onto another cell

Right(a1,13) should get you there.

HTH
Regards,
Howard

"Sonja" wrote in message
...
Hello,

Please see below example: I have column A1 which has information
CHI090169094 BKG# 19802749 and I want to extract BKG# 19802749 and
put it into column B1 and delete the information that was in A1 for
BKG# 19802749.
Can someone advise how I can do this. I tried using the formula =LEFT
(A1, 13) and it captures CHI090169094 and pastes into B1 column. But
That's not what I'm looking for. I would like for the formula to
capture BKG# 19802749 from A1 and put it into column B1 and delete
the information that was copied from cell A1.

A1 B1
CHI090169094 BKG# 19802749 BKG# 19802749
CHI090114574 BKG# 18133600
CHI090122224 BKG# 16469485

Thanks,
Sonia



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default how to cut part of a text from one cell and automatically pasteit onto another cell

Howard,

Thanks that helps me get the text and insert it to B1 but once I get
the text I want to remove it from A1. Can you advise what other
function I need to add to it.

Tks,
Sonia

On Aug 17, 4:33*pm, "L. Howard Kittle" wrote:
Right(a1,13) should get you there.

HTH
Regards,
Howard

"Sonja" wrote in message

...



Hello,


Please see below example: I have column A1 which has information
CHI090169094 *BKG# 19802749 and I want to extract BKG# 19802749 and
put it into column B1 and delete the information that was in A1 for
BKG# 19802749.
Can someone advise how I can do this. I tried using the formula =LEFT
(A1, 13) and it captures CHI090169094 and pastes into B1 column. But
That's not what I'm looking for. I would like for the formula to
capture BKG# 19802749 *from A1 and put it into column B1 and delete
the information that was copied from cell A1.


A1 * * * * * * * * * * * * * * * * * * * * * * * * *B1
CHI090169094 *BKG# 19802749 * * *BKG# 19802749
CHI090114574 *BKG# 18133600
CHI090122224 *BKG# 16469485


Thanks,
Sonia- Hide quoted text -


- Show quoted text -


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 204
Default how to cut part of a text from one cell and automatically past

Sonja,

You can not use a formula to overwrite the data it is using. YOu would need
vba code to do this. All you could do is put Right(a1,13) in B1 to get BKG#
19802749 and left(A1,12) in C1 to get CHI090169094. Hope this helps

"Sonja" wrote:

Howard,

Thanks that helps me get the text and insert it to B1 but once I get
the text I want to remove it from A1. Can you advise what other
function I need to add to it.

Tks,
Sonia

On Aug 17, 4:33 pm, "L. Howard Kittle" wrote:
Right(a1,13) should get you there.

HTH
Regards,
Howard

"Sonja" wrote in message

...



Hello,


Please see below example: I have column A1 which has information
CHI090169094 BKG# 19802749 and I want to extract BKG# 19802749 and
put it into column B1 and delete the information that was in A1 for
BKG# 19802749.
Can someone advise how I can do this. I tried using the formula =LEFT
(A1, 13) and it captures CHI090169094 and pastes into B1 column. But
That's not what I'm looking for. I would like for the formula to
capture BKG# 19802749 from A1 and put it into column B1 and delete
the information that was copied from cell A1.


A1 B1
CHI090169094 BKG# 19802749 BKG# 19802749
CHI090114574 BKG# 18133600
CHI090122224 BKG# 16469485


Thanks,
Sonia- Hide quoted text -


- Show quoted text -



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default how to cut part of a text from one cell and automatically paste it onto another cell

DataText to ColumnsFixed Width.

Drop a split at the first space.

Assuming your data is consistent as your example.


Gord Dibben MS Excel MVP

On Mon, 17 Aug 2009 14:24:53 -0700 (PDT), Sonja wrote:

Hello,

Please see below example: I have column A1 which has information
CHI090169094 BKG# 19802749 and I want to extract BKG# 19802749 and
put it into column B1 and delete the information that was in A1 for
BKG# 19802749.
Can someone advise how I can do this. I tried using the formula =LEFT
(A1, 13) and it captures CHI090169094 and pastes into B1 column. But
That's not what I'm looking for. I would like for the formula to
capture BKG# 19802749 from A1 and put it into column B1 and delete
the information that was copied from cell A1.

A1 B1
CHI090169094 BKG# 19802749 BKG# 19802749
CHI090114574 BKG# 18133600
CHI090122224 BKG# 16469485

Thanks,
Sonia




  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 698
Default how to cut part of a text from one cell and automatically paste it onto another cell

Try this...

In a column use Left(a1,13)
In another adjacent column use Right(a1,13)

Now copy the two columns and Past Special Values OK back into column A
and B.

Regrds,
Howard

"Sonja" wrote in message
...
Hello,

Please see below example: I have column A1 which has information
CHI090169094 BKG# 19802749 and I want to extract BKG# 19802749 and
put it into column B1 and delete the information that was in A1 for
BKG# 19802749.
Can someone advise how I can do this. I tried using the formula =LEFT
(A1, 13) and it captures CHI090169094 and pastes into B1 column. But
That's not what I'm looking for. I would like for the formula to
capture BKG# 19802749 from A1 and put it into column B1 and delete
the information that was copied from cell A1.

A1 B1
CHI090169094 BKG# 19802749 BKG# 19802749
CHI090114574 BKG# 18133600
CHI090122224 BKG# 16469485

Thanks,
Sonia



  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default how to cut part of a text from one cell and automatically pasteit onto another cell

On Aug 17, 5:28*pm, "L. Howard Kittle" wrote:
Try this...

In a column use Left(a1,13)
In another adjacent column use Right(a1,13)

Now copy the two columns and Past Special Values OK back into column A
and B.

Regrds,
Howard

"Sonja" wrote in message

...



Hello,


Please see below example: I have column A1 which has information
CHI090169094 *BKG# 19802749 and I want to extract BKG# 19802749 and
put it into column B1 and delete the information that was in A1 for
BKG# 19802749.
Can someone advise how I can do this. I tried using the formula =LEFT
(A1, 13) and it captures CHI090169094 and pastes into B1 column. But
That's not what I'm looking for. I would like for the formula to
capture BKG# 19802749 *from A1 and put it into column B1 and delete
the information that was copied from cell A1.


A1 * * * * * * * * * * * * * * * * * * * * * * * * *B1
CHI090169094 *BKG# 19802749 * * *BKG# 19802749
CHI090114574 *BKG# 18133600
CHI090122224 *BKG# 16469485


Thanks,
Sonia- Hide quoted text -


- Show quoted text -


Thanks you all for your help. That will work.
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
copy selected part number of text from one cell into another cell orewa Excel Discussion (Misc queries) 1 April 11th 08 01:30 PM
un-Bold part of text in a cell (automatically) chris Excel Discussion (Misc queries) 2 September 26th 07 10:21 PM
How do I include part of a cell in text (string?) in another cell? Chris Mitchell Excel Worksheet Functions 2 June 25th 07 10:08 AM
Using Text from one cell as part of a cell reference in another [email protected] Excel Discussion (Misc queries) 4 January 18th 07 07:50 PM
Display contents of cell in another cell as part of text string? [email protected] New Users to Excel 3 July 8th 06 07:44 PM


All times are GMT +1. The time now is 09:19 PM.

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

About Us

"It's about Microsoft Excel"