Nick's blog
33. Excel Tips - Moving Averages
Submitted by Nick on 9 March, 2009 - 09:41
This example shows you how to calculate moving averages.
They can be useful when you have a share price for example that changes every day, and you want to calculate the average of the last X days.
Here's the data we'll work with:
In cell F3, we enter the number of days we want to calculate the average for.
- 2 comments
- Read more
- 42953 reads
32. Excel Tips - Using Go To
Submitted by Nick on 9 March, 2009 - 09:40
This is a follow-on from Tip 31
So, you've entered all your range names and now you would like to go to one of them and you can't remember where it is.
Step1:
Press CTRL + g
This brings up the Go To menu:
- note all the range names are listed and you can select any of them to go to that range.
31. Excel Tips - Create Range names quickly
Submitted by Nick on 9 March, 2009 - 09:37
This is a MASSIVE time saver for a developer, and avoids typos.
Suppose you have the following data on your sheet, and you want to add range names to the input fields. i.e. you want the cell you enter 100,000 into to be named "House_Price"
Step1:
Select the range (B2:C20 in this case)
30. Excel Tips - View, Edit and Delete range names - well done XL 2007
Submitted by Nick on 9 March, 2009 - 09:35
Here's something that has improved massively in Excel 2007:
- the handling of Range names
If you go: ALT then i then n then d (in sequence) it brings up the range name defenition panel:
29. Excel Tips - Calculating proportions with COUNTIF
Submitted by Nick on 9 March, 2009 - 09:32
Suppose you have the following data, and you want to calculate the percentage of people who are Male, and the percentage of Females
Use the COUNTIF function to count the number of each in the range, then divide by the total to get the percentages.
28. Excel Tips - Easily change the print area
Submitted by Nick on 9 March, 2009 - 09:20
Here’s a tip on printing and how to change the print area.
Suppose you have this data, and you want to print up to Data6
Step1:
Select the data you want to print:
Then go:
27. Excel Tips - Find and Replace across the whole workbook
Submitted by Nick on 9 March, 2009 - 09:17
This tip shows you how to find and replace across the entire workbook.
You might spend ages looking for things when a simple trick can save lots of time.
Suppose you have a Workbook that looks like this:
Sheet1
Sheet2
26. Excel Tips - Data Validation - part 1
Submitted by Nick on 9 March, 2009 - 09:15
Data Validation is extremely useful functionality and I use it in every system I write.
The primary aim is to guide people into entering correct data. If you allow people to type whatever they like into a field, you end up with all kind of gunk.
There are a few ways to use Data Validation... we'll discuss the way based on other cells.
25. Excel Tips - Conditional formatting
Submitted by Nick on 9 March, 2009 - 09:13
This tip is one of my favourites, and I have used it a lot for trading systems.
Suppose there's something sooo fundamental on your sheet that if you get it wrong, the consequences can be very costly indeed. Well, as a system designer, you should try your hardest to protect users from making thes mistakes.
Conditional formatting helps enormously here.
24. Excel Tips - Pasting values
Submitted by Nick on 9 March, 2009 - 09:12
Why is there no easy way to paste values in Excel ?.. huh, huh.
If I got a pound for every time I had to paste values in Excel, it wld be worth at least 7 EUROs, and I'd be a Zillionaire in Zimbabwean dollars.
The best way of performing this operation known to man is the following:
Step1:
Select range to copy, and press CTRL + C
Step2:
Select the place you want want to paste to, and press the following keys in order:
23. Excel Tips - Inserting rows and columns
Submitted by Nick on 9 March, 2009 - 09:10
When using Excel for your daily work, you will often need to insert rows and columns.
Remember, when you insert rows and columns, Excel changes the references so that your formulae do not appear to change materially, however, there are some things to watch out for.
Example with 2 columns, and an addition formula:
=B3+A3
22. Excel Tips- Find the last cell for non contiguous range
Submitted by Nick on 9 March, 2009 - 09:02
So, you have data in column 1, and you want to create a formula in column 2, and copy it down.
Normally, this is a very easy task:
- enter the formlula, select the small square in the bottom right corner of your cell, and double click on it to automatically populate your 2nd column with the formula.
However, what happens when the data looks like this?
21. Excel Tips - Useful Excel shortcuts
Submitted by Nick on 9 March, 2009 - 09:00
There are lots of shortcuts in Excel, but In my 13 years of using Excel every day, these are the ones that I think are most useful and a good Excel user should know all of these:
Video Training on Useful Excel Shortcuts:
20. Excel Tips - VLOOKUP limitations - can use INDEX + MATCH instead
Submitted by Nick on 8 March, 2009 - 21:28
VLOOKUP is all very well when the data is arranged in the right way for the function - with the thing you're looking for to the left of the thing you want to return, but what happens if you want to do the reverse of VLOOKUP ?
Well, fortunately help is at hand with INDEX + MATCH.
- 6 comments
- Read more
- 62674 reads
19. Excel Tips - Function to return the worksheet name
Submitted by Nick on 8 March, 2009 - 21:27
There isn't a single function to return the sheet name, but you can use a combination of functions to get at it.
=RIGHT(CELL("filename"),LEN(CELL("filename"))-FIND("]",CELL("filename"),1))
- Here's a breakdown of what it's doing:
Training Video on getting Worksheet Name:
- 10 comments
- Read more
- 98553 reads
18. Excel Tips - Using the TODAY function
Submitted by Nick on 8 March, 2009 - 21:25
I come from a financial background, and the most important date in finance is Today's date. It can mean many things, but the most significant is that it is the date at which the discount factor = 1, but I'll save that discussion for another day.
If you're writing a bond or derivative pricing function, you will need to enter today's date. The Excel function for that is: =TODAY()
17. Excel Tips - Date formatting - Show the day of the week
Submitted by Nick on 8 March, 2009 - 21:24
Today's tip is a quick one as I am feeling lazy, but it's a useful one none the less.
- By formatting dates in a certain way, you can display the day of the week, and not using much space.
Step1:
Select A1, and press CTRL + ;
(this gives you today's date)
Step2:
Right click => format cells => custom
type: ddd dd-mmm-yy
For today, you get:
Sat 27-Dec-08
16. Excel Tips - Hiding sheets - secret trick
Submitted by Nick on 8 March, 2009 - 21:21
There are 2 ways to hide a sheet.
Most people know the first way:
Format => Sheet => hide
Not many know the second way:
Press ALT + F11 to bring up the VBA editor.
.. and change the visible option as shown:
To the untrained eye, this Very Hidden sheet is difficult to find.
15. Excel Tips - Wrap Text for headings
Submitted by Nick on 8 March, 2009 - 21:19
Screen real estate is a valuable commodity, and with this tip, you can save using it unnecessarily.
If you autofit the columns with large headings, it will look like this:
However, to get it to this is only a few steps:
Step1:
14. Excel Tips - IRR - internal rate of return
Submitted by Nick on 8 March, 2009 - 21:16
I am adding this as I looked at the search results, and noticed that people had searched for IRR, and sadly they didn't find anything useful.
Here's a noddy's guide to IRR.
IRR is a function that takes a series of cash flows and works out the effective rate of return if they were to be annually invested.
Let's take a look.
Here's an example of an IRR function call:
13. Excel Tips - VLOOKUP
Submitted by Nick on 8 March, 2009 - 21:14
VLOOKUP is an extremely useful function and you should know it like the back of your hand.
In a few words, it allows you to look up a value in a table, and return another value on the same row.
In my example, you've bought yourself a massive Buy To Let portfolio, and are wondering when you can retire. On typing in the new prices, you realise this might not be any time soon.
12. Excel Tips - Need Help with Excel ?
Submitted by Nick on 8 March, 2009 - 21:10
If you need help, the last thing you want to do is to use Microsoft's help (pressing F1)... It's really rubbish.. Sorry MS !
The best place to look (IMHO) is google groups:
- this is where you're most likely to find an answer to your question as it's structured around a Problem => Solution framework, and someone else is sure to have encountered the same problem as you before... and solved it !
11. Excel Tips - Think of a number between 1 and 10
Submitted by Nick on 8 March, 2009 - 21:00
..or let Excel do it for you with the RANDBETWEEN function.
=RANDBETWEEN(1,10)
... useful for example if you're writing a card game, you can use =RANDBETWEEN(1,52) to pick a random card.
... or for a random walk analysis on a share price.
Training Video on Random Number Generation:
10. Excel Tips - Get access to a whole load of new functions - Analysis Toolpak
Submitted by Nick on 8 March, 2009 - 20:51
Did you know that you can get access to a whole load of new functions in Excel 2003 by adding the analysis toolpak ?
Go: Tools=>Addins and select Analysis toolpak
Now you can use functions like EDATE that allow you to add/subtract a specified amount of months to a start date.
9. Excel Tips - Change values on multiple sheets
Submitted by Nick on 8 March, 2009 - 20:48
Not a lot of people know this trick, but it can be a massive time saver if you have the same information on lots of sheets, and you want to change it.
It's simple when you know how !
Step1:
Select all the sheets that you want to enter a value into or change a value on. You can do this by holding down the CTRL key
Step2:
8. Excel Tips - Get file path with an excel formula
Submitted by Nick on 8 March, 2009 - 20:45
This is a quirky one.
You can use the excel function call CELL("filename") to retrieve something that should be the file name, but for some odd reason isn't.
- 6 comments
- Read more
- 174863 reads
7. Excel Tips - Create all the days of the week in 5 seconds
Submitted by Nick on 8 March, 2009 - 20:42
This tip is a very quick and easy one
Step1:
Type: "Monday" in cell A1
Step2:
Select cell A1
Step3:
Click on the square in the bottom right of the selection
- Drag it down until A7
You will now have all the days of the week.
Training Video on how to create days of the week in Excel:
6. Excel Tips - Debugging large Excel Function calls
Submitted by Nick on 8 March, 2009 - 20:39So you've inherited a really large spreadsheet from some plonker who never liked, but has now left the company without leaving any documentation.
The spreadsheet is now broken and you have been tasked to fix it. There are massive functions:
Where do you start?!
Well fortunately help is at hand.
Step1:
Go: Insert=>function (click on the offending cell, and go: ALT then I then F)
5. Excel Tips - Display function arguments
Submitted by Nick on 8 March, 2009 - 20:37
One of the most useful tips I have is on how to easily display the arguments of a function.
To demonstrate this:
Step1
In cell A1, type: =vlookup (don't press ENTER)
Step2
Press CTRL + SHIFT + A
- hey presto, the function arguments appear.
Training Video on how to display the function arguments:
4. Excel Tips - Autofit selection
Submitted by Nick on 8 March, 2009 - 20:35
Autofitting your selection is an extremely useful piece of functionality.
Lets say that you have a large piece of text in the first row, but then very small text in subsequent rows.
You can save valuable screen real estate by autofitting the selection.
Here's how much screen space you use when you autofit the column:
Recent comments
5 years 34 weeks ago
6 years 20 weeks ago
6 years 32 weeks ago
6 years 35 weeks ago
6 years 36 weeks ago
6 years 42 weeks ago
6 years 50 weeks ago
6 years 50 weeks ago
6 years 50 weeks ago
6 years 50 weeks ago