R roddtx Mar 17, 2006 #1 can someone assist with the formula that would allow me to remove all but the last 4 digits in a column of numbers
can someone assist with the formula that would allow me to remove all but the last 4 digits in a column of numbers
G Guest Mar 17, 2006 #2 Hi You could use a helper column with this in: =RIGHT(A2,4) and fill this down. Andy.
B Bernard Liengme Mar 17, 2006 #3 Can we assume we are dealing with whole numbers? =--RIGHT(A1,4) RIGHT returns text, the double negation turns this back to a number OR =MOD(A1,10000) Then copy either formula down the column.
Can we assume we are dealing with whole numbers? =--RIGHT(A1,4) RIGHT returns text, the double negation turns this back to a number OR =MOD(A1,10000) Then copy either formula down the column.
R roddtx Mar 17, 2006 #4 you are the best > Hi You could use a helper column with this in: =RIGHT(A2,4) and fill this down. Andy. "roddtx" <[email protected]> wrot in message news:[email protected]... http://www.excelforum.com/showthread.php?threadid=523694 Click to expand...
you are the best > Hi You could use a helper column with this in: =RIGHT(A2,4) and fill this down. Andy. "roddtx" <[email protected]> wrot in message news:[email protected]... http://www.excelforum.com/showthread.php?threadid=523694 Click to expand...