When Excel sorts a column of items, it looks at the initial character of each item, that is, the characters to the LEFT. But suppose you want to sort according to characters on the right?
For this you need to use the =RIGHT function.
Example problem:
You have a series of account codes, where the first five digits represent the nominal code, the last three digits the cost center.
They are in cells A1:A6 and in nominal code order like this (51000-52000):
51000-100
51000-200
51000-300
52000-100
52000-200
52000-300
You want to sort them into cost center code order like this (100, 200, 300):
51000-100
52000-100
51000-200
52000-200
51000-300
52000-300
Solution
Create a blank column to the right of column AIn B1 type =RIGHT(A1,3).This will return the value 100.
Copy this formula down the rows.
Now sort the data in both columns on column B (Data, Sort, Column B).
Now you can delete Column B.
Note: A more robust formula that would handle the case where the reference before the "-" was of variable length would be:
=right(A1,len(A1)-find("_",A1))
As a by-product, this formula would also handle the case where the reference after the "-" was also of variable length.
Example Problem
You have a column of alphabetic account codes in fields A1:A6, like this:
Income Audit
Income Consultancy
Income Other
Premises
Marketing
Office Admin
How do you get them to sort into this sequence automatically?
Solution: Put a numeric prefix at the front.
Type these numbers into cells B1:B6
10
11
12
13
14
15
In cell C1, type the formula: =B1&”-“&A1
This returns 10-Income Audit.
Copy the formula down column C.
Now change the formulas to values as follows:
Highlight column C. Choose Copy. Then -Paste Special Values, OK (or Paste, Paste Values in Excel 2007).
From now on, use the list of account codes in column C.
The slow way is to highlight the area you want to print, then use the Set Print Area option.
The quick way is to highlight the area you want to print, then:
File - Print – at bottom left, change from Active Sheet to Selection –- Print.
Suppose your budget fills cells A1 to L10.
Highlight cells A1 to M11 so that that there is a blank row underneath and a blank column to the right.
Then click the Autosum icon once (big Sigma; or use keyboard shortcut Alt+=)
Excel calculates the totals and puts them into the blank row and column.
AccountingWEB.com Jun-15-2007
Categories: Excel Tips, AW.com Excel Zone Tools & Tips, News Archives
Times read: 5698
Reprints