Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 557
Default FORMULA TO MINUS TEXT CHARACTERS

Hi, i have data on my spreadsheet please see below
ME54001528
ME54001961
ME54002025
ME54002160
ME54001207
ME5EE120
ME5EE200
ME54000441
ME51831103
ME54002119
ME51842129
ME54001784
ME54001212
ME51842123
ME54001952
ME54002086
ME54001350
i want formula which should minus first three text characters or you
can say take away first three text digits and put rest of the text in
cell. I know the formulas of =LEFT and =RIGHT but i dont know how to
minus first three or last three text characters whith these formulas.
Is there anybody can help me
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,058
Default FORMULA TO MINUS TEXT CHARACTERS

=RIGHT(A1,LEN(A1)-3)
--
Gary''s Student - gsnu2007c
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,441
Default FORMULA TO MINUS TEXT CHARACTERS

K,

Lots of ways to do this:

Take away the first 3 characters.
=MID(A1,4,LEN(A1))
=RIGHT(A1,LEN(A1)-3)


Take away the last three characters.
=MID(A1,1,LEN(A1)-1)
=LEFT(A1,LEN(A1)-3)


Take away first and last 3
=MID(A1,4,LEN(A1)-6)
=RIGHT(LEFT(A1,LEN(A1)-3),LEN(LEFT(A1,LEN(A1)-3))-3)

HTH,
Bernie
MS Excel MVP


"K" wrote in message
...
Hi, i have data on my spreadsheet please see below
ME54001528
ME54001961
ME54002025
ME54002160
ME54001207
ME5EE120
ME5EE200
ME54000441
ME51831103
ME54002119
ME51842129
ME54001784
ME54001212
ME51842123
ME54001952
ME54002086
ME54001350
i want formula which should minus first three text characters or you
can say take away first three text digits and put rest of the text in
cell. I know the formulas of =LEFT and =RIGHT but i dont know how to
minus first three or last three text characters whith these formulas.
Is there anybody can help me



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 557
Default FORMULA TO MINUS TEXT CHARACTERS

On 4 Feb, 16:07, "Bernie Deitrick" <deitbe @ consumer dot org wrote:
K,

Lots of ways to do this:

Take away the first 3 characters.
=MID(A1,4,LEN(A1))
=RIGHT(A1,LEN(A1)-3)

Take away the last three characters.
=MID(A1,1,LEN(A1)-1)
=LEFT(A1,LEN(A1)-3)

Take away first and last 3
=MID(A1,4,LEN(A1)-6)
=RIGHT(LEFT(A1,LEN(A1)-3),LEN(LEFT(A1,LEN(A1)-3))-3)

HTH,
Bernie
MS Excel MVP

"K" wrote in message

...



Hi, i have data on my spreadsheet please see below
ME54001528
ME54001961
ME54002025
ME54002160
ME54001207
ME5EE120
ME5EE200
ME54000441
ME51831103
ME54002119
ME51842129
ME54001784
ME54001212
ME51842123
ME54001952
ME54002086
ME54001350
i want formula which should minus first three text characters or you
can say take away first three text digits and put rest of the text in
cell. *I know the formulas of =LEFT and =RIGHT but i dont know how to
minus first three or last three text characters whith these formulas.
Is there anybody can help me- Hide quoted text -


- Show quoted text -


Thanks bernie
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 to handle a minus sign "-" as text not as part of a formula? Claudia d'Amato Excel Discussion (Misc queries) 3 April 2nd 23 07:09 PM
formula to truncate text characters MarkT Excel Discussion (Misc queries) 6 June 4th 09 04:19 PM
Formula to Pick Out Characters within a Text String Peanut Excel Worksheet Functions 7 March 21st 07 10:08 PM
CHANGE TRAILING MINUS TO BRACKETS OR PRECEEDING MINUS Socal Analyst looking for help Excel Discussion (Misc queries) 2 May 12th 06 07:17 PM
Remove characters from a text string using a formula duncrbrt Excel Discussion (Misc queries) 1 June 4th 05 02:19 AM


All times are GMT +1. The time now is 04:08 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"