Sep 4, 2003 #1 gdbsti Technical User Jul 15, 2003 29 US Hi all, I did a search here but could not find an answer... I need a formula to add (+1, or +9) to a cell containing letters and numbers. eg: A 1 AB1234 2 AB1235 3 AB1236 TIA Bruce
Hi all, I did a search here but could not find an answer... I need a formula to add (+1, or +9) to a cell containing letters and numbers. eg: A 1 AB1234 2 AB1235 3 AB1236 TIA Bruce
Sep 4, 2003 #2 ilses Technical User May 31, 2001 235 DE Something along the lines of: =LEFT(A1;2)+(RIGHT(A1;4)+9) Ilse Upvote 0 Downvote
Sep 4, 2003 1 #3 Bowers74 MIS Nov 20, 2002 1,085 US More like this (assuming all of your data has 4 numbers at the end that you want to add 1 or 9 to: =Value(right(A1,4))+1 or =Value(right(A1,4))+9 If you need to have the number "reconnected" to the letters: =Left(A1,2)&Value(Right(D1,4))+1 or =Left(A1,2)&Value(Right(D1,4))+9 I hope this helps! Peace! Mike Never say Never!!! Nothing is impossible!!! Upvote 0 Downvote
More like this (assuming all of your data has 4 numbers at the end that you want to add 1 or 9 to: =Value(right(A1,4))+1 or =Value(right(A1,4))+9 If you need to have the number "reconnected" to the letters: =Left(A1,2)&Value(Right(D1,4))+1 or =Left(A1,2)&Value(Right(D1,4))+9 I hope this helps! Peace! Mike Never say Never!!! Nothing is impossible!!!
Sep 4, 2003 #4 Bowers74 MIS Nov 20, 2002 1,085 US Ooops, That should read: =Left(A1,2)&Value(Right(A1,4))+1 or =Left(A1,2)&Value(Right(A1,4))+9 For the second formulae! Sorry! Peace! Mike Never say Never!!! Nothing is impossible!!! Upvote 0 Downvote
Ooops, That should read: =Left(A1,2)&Value(Right(A1,4))+1 or =Left(A1,2)&Value(Right(A1,4))+9 For the second formulae! Sorry! Peace! Mike Never say Never!!! Nothing is impossible!!!
Sep 4, 2003 Thread starter #5 gdbsti Technical User Jul 15, 2003 29 US Thank you very much Ilse and Mike.. On with the project! Cheers Bruce Upvote 0 Downvote