B britten funk Aug 5, 2004 #1 I need to sort columns using the last 3 digits of a number not the first digits. How do I do this? Thanks for your help.
I need to sort columns using the last 3 digits of a number not the first digits. How do I do this? Thanks for your help.
G Guest Aug 5, 2004 #2 Hi, Try adding a helper column (B) and use =RIGHT(A1,3) and fill down, then click any cell within column B and sort. Harry
Hi, Try adding a helper column (B) and use =RIGHT(A1,3) and fill down, then click any cell within column B and sort. Harry
D Dave Peterson Aug 5, 2004 #3 I'd use a formula like: =mod(a1,1000) To keep them numbers (not text) Or modify Harry's formula to: =--RIGHT(A1,3)
I'd use a formula like: =mod(a1,1000) To keep them numbers (not text) Or modify Harry's formula to: =--RIGHT(A1,3)