MrKowz
Well-known Member
- Joined
- Jun 30, 2008
- Messages
- 6,653
- Office Version
- 365
- 2016
- Platform
- Windows
We need another discussion thread! Do you have any Excel OCD habits? Do you find yourself always formatting things a certain way, setting up borders with specific thicknesses, etc?
Whenever I get a spreadsheet from a colleague that has no formats, I go insane. I have to put a thick border around anything that is meant to be looked at as a group (with thin borders between), any cell that is meant to be manually inputted I color with a light yellow. Any cell that is a formula output I color with light green, and any cell that is a macro output I color with light blue. Cells that are a "total" (sum, product, average, etc), I color in a light orange. Any dollar amounts, I have to put into Accounting Format.
Also, I hate... HATE HATE HATE HATE having things in Column A when it isn't a data table or if the number of rows used is less than what fits on my screen. When things bump up right against the left edge of the table, it makes me go bonkers. :D
For example... any time I get a spreadsheet that starts out looking like this:
Excel 2003
I put it into something that looks like this (Imagine thick borders around the separate arrays):
Excel 2003
Also, with macros... any time I get code, the FIRST thing I do is go through and tier it so that it is easier to follow where loops, ifs, for statements, select cases begin/end.
Whenever I get a spreadsheet from a colleague that has no formats, I go insane. I have to put a thick border around anything that is meant to be looked at as a group (with thin borders between), any cell that is meant to be manually inputted I color with a light yellow. Any cell that is a formula output I color with light green, and any cell that is a macro output I color with light blue. Cells that are a "total" (sum, product, average, etc), I color in a light orange. Any dollar amounts, I have to put into Accounting Format.
Also, I hate... HATE HATE HATE HATE having things in Column A when it isn't a data table or if the number of rows used is less than what fits on my screen. When things bump up right against the left edge of the table, it makes me go bonkers. :D
For example... any time I get a spreadsheet that starts out looking like this:
Excel Workbook | ||||
---|---|---|---|---|
A | B | |||
2 | Interest Rate | 6.50% | ||
3 | Years | 2.00 | ||
4 | ||||
5 | Principal Amount | Accrued Value | ||
6 | 1000 | 1134.23 | ||
7 | 2000 | 2268.45 | ||
8 | 3000 | 3402.68 | ||
9 | 4000 | 4536.90 | ||
10 | 5000 | 5671.13 | ||
11 | ||||
12 | Total | 17013.38 | ||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
B6 | =A6*(1+$B$2)^$B$3 | |
B7 | =A7*(1+$B$2)^$B$3 | |
B8 | =A8*(1+$B$2)^$B$3 | |
B9 | =A9*(1+$B$2)^$B$3 | |
B10 | =A10*(1+$B$2)^$B$3 | |
B12 | =SUM(B6:B10) |
I put it into something that looks like this (Imagine thick borders around the separate arrays):
Excel Workbook | ||||
---|---|---|---|---|
B | C | |||
2 | Interest Rate | 6.50% | ||
3 | Years | 2.00 | ||
4 | ||||
5 | Principal Amount | Accrued Value | ||
6 | $ 1,000.00 | $ 1,134.23 | ||
7 | $ 2,000.00 | $ 2,268.45 | ||
8 | $ 3,000.00 | $ 3,402.68 | ||
9 | $ 4,000.00 | $ 4,536.90 | ||
10 | $ 5,000.00 | $ 5,671.13 | ||
11 | ||||
12 | Total | $ 17,013.38 | ||
Sheet1 |
Also, with macros... any time I get code, the FIRST thing I do is go through and tier it so that it is easier to follow where loops, ifs, for statements, select cases begin/end.
Last edited: