portions of data in one cell moved to another

G

G. Felton

I need to sort data in once a series of cells in one
column by the last five numbers. How do I copy those last
five numbers into another column to sort?

Thanks,

G.
 
A

Akshay Bakhai

in case your original data is a number, then try the
following should give you the last 5 numbers of the
contents of the cell A1
=mod(A1, 100000)


In case of text
=right(A1, 5) will give you the last 5 characters of the
contents of cell A1.
 

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