Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Deleting a consistant portion of all cells in a given column

I need to remove only the first 10 characters of 40 character cells in a
given column.
What is the formula to produce this result? All cells are currently 40
characters in length.
--
clock
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,202
Default Deleting a consistant portion of all cells in a given column

I need to remove only the first 10 characters of 40 character cells in a
given column.
What is the formula to produce this result? All cells are currently 40
characters in length.


=MID(A2,11,999)

Rick
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,202
Default Deleting a consistant portion of all cells in a given column

I need to remove only the first 10 characters of 40 character cells in a
given column.
What is the formula to produce this result? All cells are currently 40
characters in length.


=MID(A2,11,999)


I realize you said all of your text is 40 characters in length which means
you could have used this instead...

=MID(A2,11,30)

but if your text ever got longer, the extra characters from character
position 41 onward would be truncated away. Using a number larger than you
need will protect against your text ever becoming longer. Another
possibility, which automatically protects against longer text being
introduced later on is this formula...

=REPLACE(A4,1,10,"")

Rick

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 34
Default Deleting a consistant portion of all cells in a given column

=mid(a2,11,len(a2))

"clock" wrote in message
...
I need to remove only the first 10 characters of 40 character cells in a
given column.
What is the formula to produce this result? All cells are currently 40
characters in length.
--
clock



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
bj bj is offline
external usenet poster
 
Posts: 1,397
Default Deleting a consistant portion of all cells in a given column

=right(a1,30)

"clock" wrote:

I need to remove only the first 10 characters of 40 character cells in a
given column.
What is the formula to produce this result? All cells are currently 40
characters in length.
--
clock

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
how do i remove a portion of data from a column SynAtl Excel Discussion (Misc queries) 2 March 15th 07 06:42 PM
Sort a column of email addresses by end portion of address Jammie Excel Discussion (Misc queries) 6 August 15th 06 10:27 AM
HOW TO MAKE A MAILING LIST IN ONE COLUMN HAVE CONSISTANT ROWS [email protected] Excel Discussion (Misc queries) 3 August 4th 06 12:08 AM
Remove portion of text from cells glenlee Excel Discussion (Misc queries) 1 September 24th 05 01:57 AM
Deleting blank cells in a column KatyLady Excel Discussion (Misc queries) 6 May 30th 05 03:47 PM


All times are GMT +1. The time now is 12:29 AM.

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"