![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Board Regular
Join Date: May 2002
Posts: 61
|
I have a list:
Feb xxxxx Mar yyyyy Dec hhhhh and I want a formula that will remove the first four characters (3 letters and a space) giving me the list: xxxxx yyyyy hhhhh Is there such a formula? I tried messing around with the UPPER(LEN()) thing but couldn't get it to work. |
|
|
|
|
|
#2 |
|
MrExcel MVP
Join Date: Feb 2002
Location: Allentown, PA
Posts: 2,510
|
Why not just:
=right(a1,5) Where 5 is the number of digits you want to pull. Looks like you've got 5 in each one. Or, just select the column, and hit Data-Text to columns, and choose space as the delimiter.
__________________
~Anne Troy |
|
|
|
|
|
#3 |
|
Board Regular
Join Date: Mar 2002
Location: Sydney/Brisbane , Australia
Posts: 539
|
try
b1=REPLACE(a1,1,4,"") where a1 is JAN xxxx _________________ All The Best Qroozn [ This Message was edited by: Qroozn on 2002-05-20 17:01 ] |
|
|
|
|
|
#4 | |
|
MrExcel MVP
Join Date: Feb 2002
Location: Auckland, New Zealand
Posts: 4,209
|
Quote:
Where D13 is the cell that houses the TEXT |
|
|
|
|
|
|
#5 |
|
Board Regular
Join Date: May 2002
Posts: 61
|
This leaves a space in front of the output - is there a way around that?
[quote] On 2002-05-20 17:00, Qroozn wrote: try b1=REPLACE(a1,1,4,"") where a1 is JAN xxxx |
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|