Aug 14, 2003 #1 faxof Programmer Dec 5, 2001 272 GB i have a column containing codes in the following format: "GB123456D" i want to remove the GB part for each entry. any ideas? faxof
i have a column containing codes in the following format: "GB123456D" i want to remove the GB part for each entry. any ideas? faxof
Aug 14, 2003 1 #2 SQLBI IS-IT--Management Jul 25, 2003 988 GB Faxof, If the ref's are always the same length use: =RIGHT(CellRef, 7) If they vary in length use: =RIGHT(CellRef,LEN(CellRef)-2) Hope this helps. Leigh Moore LJM Analysis Ltd http://www.ljm-analysis.co.uk Upvote 0 Downvote
Faxof, If the ref's are always the same length use: =RIGHT(CellRef, 7) If they vary in length use: =RIGHT(CellRef,LEN(CellRef)-2) Hope this helps. Leigh Moore LJM Analysis Ltd http://www.ljm-analysis.co.uk
Aug 14, 2003 #3 Bowers74 MIS Nov 20, 2002 1,085 US You could also try: =SUBSTITUTE(A1,LEFT(A1,2),"" This assumes also that the references are always 2 characters long. Hope this helps! Peace! Mike Never say Never!!! Nothing is impossible!!! Upvote 0 Downvote
You could also try: =SUBSTITUTE(A1,LEFT(A1,2),"" This assumes also that the references are always 2 characters long. Hope this helps! Peace! Mike Never say Never!!! Nothing is impossible!!!