PC Review


Reply
Thread Tools Rate Thread

Deleting a consistant portion of all cells in a given column

 
 
=?Utf-8?B?Y2xvY2s=?=
Guest
Posts: n/a
 
      6th Jul 2007
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 With Quote
 
 
 
 
Rick Rothstein \(MVP - VB\)
Guest
Posts: n/a
 
      6th Jul 2007
>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
 
Reply With Quote
 
Rick Rothstein \(MVP - VB\)
Guest
Posts: n/a
 
      6th Jul 2007
> >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

 
Reply With Quote
 
Naraine Ramkirath
Guest
Posts: n/a
 
      6th Jul 2007
=mid(a2,11,len(a2))

"clock" <(E-Mail Removed)> wrote in message
news:8FEF3516-5802-44EE-B87F-(E-Mail Removed)...
> 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 With Quote
 
=?Utf-8?B?Ymo=?=
Guest
Posts: n/a
 
      6th Jul 2007
=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 With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Adding consistant cells. dpal Microsoft Excel Misc 4 25th Mar 2009 02:41 AM
Deleting Duplicate Cells in one Column. =?Utf-8?B?SmFtaWU=?= Microsoft Excel Misc 6 20th Nov 2007 04:40 PM
Deleting cells in a column ref a different column Daminc Microsoft Excel Programming 8 23rd Dec 2005 05:04 PM
Deleting blank cells in a column KatyLady Microsoft Excel Misc 5 30th May 2005 03:47 PM
Re: Deleting blank cells in a column Kieran Microsoft Excel Misc 0 30th May 2005 05:51 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 07:06 PM.