deleting numbers in a column

  • Thread starter Thread starter roddtx
  • Start date Start date
R

roddtx

:) :) can someone assist with the formula that would allow me to remove
all but the last 4 digits in a column of numbers
 
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.
 
Back
Top