Excel Filter Data

D

drec

Is it possible to filter data into another column based on a value
inside the sorted data?

To explain, Say I am filtering data in column A to show up in Column B
as just the last digit in column A. Please see below:

Column A column B
-------------- ---------------
12345 5
52459 9
09801 1

I thought maybe using filter this would be possible, but I could not
get it to work. Anyone tried something like this?
 
T

tim m

I might be misinterpreting your question but from your example if you put
this formula in column B and then copy it down you should get what you are
after.

=RIGHT(A1,1)
 
Top