deleting numbers in a column

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
 
G

Guest

Hi
You could use a helper column with this in:
=RIGHT(A2,4)
and fill this down.

Andy.
 
B

Bernard Liengme

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top