B Benjamin Sep 1, 2009 #1 I want to strip the last character from a cell, but only if it is a number. 00400200C would return C 040T1C would return C 0040202 wouldn't return anything or null
I want to strip the last character from a cell, but only if it is a number. 00400200C would return C 040T1C would return C 0040202 wouldn't return anything or null
J Jacob Skaria Sep 1, 2009 #2 Try the below formula with the data in cell A1 =IF(ISNUMBER(RIGHT(A1,1)+0),"",RIGHT(A1,1)) If this post helps click Yes
Try the below formula with the data in cell A1 =IF(ISNUMBER(RIGHT(A1,1)+0),"",RIGHT(A1,1)) If this post helps click Yes
D David Biddulph Sep 2, 2009 #3 .... or you could simplify to =IF(ISNUMBER(RIGHT(A1)+0),"",RIGHT(A1))