Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Revome first character

Status
Not open for further replies.

sabetik

IS-IT--Management
Nov 16, 2003
80
GU
Is there a function to remove the first character from a cell ex:

E76851-52060-C1 to show 76851-52060-C1

E61612-48041 show 61612-48041

Thanks



 
Yep. If the text is in A1 then =Right(A1,Len(A1)-1) should do it. Len gives the length of the string and Right shows only the given number of characters from the far right of the string.
 
Easiest way might well be to simply use Data / Text To Columns / Fixed Width, insert a break after the first character and then choose 'Do Not Import' on the first column.

Regards
Ken..............

----------------------------------------------------------------------------
[peace]It's easier to beg forgiveness than ask permission[2thumbsup]
----------------------------------------------------------------------------
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top