Nick's blog

Nick's picture

66. Excel Tips - American date to proper date.


This tip is all about that annoying time when someone gives you some dates for your spreadsheet and they come in all wrong. What has happened ?

You will be painfully aware of it if you work in a multi-regional company, and you are in Europe.

Well... most likely, along the way, someone has been using an American date format:

mm/dd/yyyy

Nick's picture

02-April-2009 - ExcelExperts.com Update



April 2009 Stats update from ExcelExperts.com

Nick's picture

Free Excel Training Videos

Nick's picture

Free Finance Training Videos

Nick's picture

Free VBA Training Videos

Nick's picture

8. VBA Tips - Concatenate Range


This tip is about doing what the Excel CONCATENATE function should be doing, but isn't !

Suppose we want to create a comma-separated list from a range or 2 ranges... How can we do that ?

  • Write a customised function in VBA !

Here's out source Data:

concatenate-range

Nick's picture

65. Excel Tips - Center Text Across Cells


This tip shows you how to center text across cells. Suppose you have the following arrangement, and you want the heading to span the whole table:

Center-Text-Across-Cells

One option is to merge the cells.. right click => format cells => Alignment => merge cells.

Nick's picture

64. Excel Tips - Select Current Region - CTRL + A


This tip is on how to select the Current Region using a keyboard shortcut:

CTRL + A

Suppose you have the following data:

Select-Current-Region

Pressing CTRL + A will select a square around all the cells that are connected to the current cell.

Nick's picture

26-Mar-2009 Loads of new Excel Training Videos !



Hi all I have been extremely busy over the past week doing Excel training videos for the Excel tips and calculators... all recorded with the best free software that money can buy !!

; - >

There are 64 new Excel Training Videos with some gr8 tips and tricks..

Feedback welcome

Nick

Excel Training Videos

Nick's picture

63. Excel Tips - Paste As Hyperlink


This tip teaches you how to paste as a hyperlink.

  • This means that you create a hyperlink from an existing cell.

Step1: Create a new workbook.

Step2: Save it

Step3: Copy the cell you want to hyperlink to.

Step4: Select another cell, and click on the Paste ribbon... choose "Paste as hyperlink" Step by step training Video on how to Paste As Hyperlink:

Nick's picture

18-Mar-2009 New training videos from ExcelExperts.com

Announcing some new training videos from ExcelExperts.com

Facebook Texas Holdem Poker Training Video:

Buy Or Rent Calculator - Worked Example:

Nick's picture

62. Excel Tips - Small Numbers in Excel


Small numbers look odd in Excel.

A Very small number will look something like this: 3.38E-09

- This is scientific notation meaning 3.48*10^-9 (3.48 times 10 to the power of -9, or 3.48*0.000000001) The reason Excel does this (I think) is to be able to display a small number in a small space.

Nick's picture

12. Excel For Finance Tips - What is RISK ?


What is RISK ?

It’s a word we hear a lot these days...

CEO, Investment bank:

Nick's picture

11. Excel For Finance Tips - Will interest rates go up or down ?


UP !

I had a look at interest rates available on the market, and found the 1y rate to be 1.50% and the 5y was at 3.20%

Taking just these 2 rates, and assuming that there's no arbitrage, I calculated the 4y rate in 1 year's time to be 3.63%.

Nick's picture

61. Excel Tips - Last Friday of the month



Here's a tip for those of you who need to prepare end of month reports.

There's a way to calculate the last Friday of the month in Excel.

Here's how it looks in Excel:

last-friday-of-the-month

So first, you enter a date.

Nick's picture

11. Excel For Finance Tips - Linear Interpolation



Interpolation is a methodology of guessing what the value would be in between 2 points.

Linear interpolation assumes that between the 2 points is a straight line.

Lets have a look at an example:

Suppose we know the Zero Rate for 1 year: 3% We also know the 4y Zero Rate: 8% ... how do we calculate the 2 year Zero Rate ?

Nick's picture

10-Mar-2009 NEW RELEASES - Training Videos for Buy or Rent Calculator


ExcelExperts.com has teamed up with YouTube to provide Training videos.
A lot of people loved the Buy or Rent calculator, but they thought it was too complicated.
Well, hopefully these training videos will make it all clear.

There are 2:
1. An introduction to using the calculator
2. A worked example building up the calculation step by step.

Nick's picture

7. VBA tips - remove Hyperlinks

Hyperlinks can be like mosquitoes

- Sometimes you can't see them and they get you when you're least expecting.

The reason is that even if you clear the contents of a cell, the hyperlink can remain. Time to blast them with a bit of VBA. It's easily done... Hyperlinks are stored on a sheet by sheet basis, so all you have to do is to loop through the hyperlinks collection of the active sheet and delete them.

Nick's picture

60. Excel Tips - Pivot Tables for Dummies



Today’s tip is an introduction to Pivot tables and Pivot table summaries.

Pivot tables are an amazing way to summarise data. They are extremely versatile, and can provide many types of summary seamlessly. They can save hours of trying to write formulae to create summaries.

Nick's picture

10. Excel For Finance Tips - What is Quantitative Easing ?


What is Quantitative Easing ?

 

Simply put:

It's printing money !

It's a sneaky way of stealing money from cautious savers who carefully tucked money away for a rainy day, and giving it to reckless borrowers.

Nick's picture

9. Excel For Finance Tips - What is Leverage ?


What is Leverage ?

Nick's picture

8. Excel For Finance Tips - What is Yield ?



What is Yield ?

Remember IRR ?... well, simply put, it's another name for that.

It's the return you get from a series of cash flows, but applies mostly to Bonds. Lets prove that using Excel functions.

Nick's picture

7. Excel For Finance Tips - What is a Basis Point ?



What is a Basis Point ?

A basis point is quite simply 0.01 of 1% So if an interest rate is 5.00% and it increases to 5.01%, that corresponds to 1 basis point increase. What is it used for ? Profit margins for fixed income products are measured in basis points.

Lets look at an example in Excel:

Nick's picture

6. Excel For Finance Tips - What is IRR ?


What is IRR ?

IRR stands for Internal Rate of Return but don't let that confuse you.

It is simply the percentage return over a specific period of an investment. It is widely used for investment appraisal.

What happens is this:

Nick's picture

5. Excel For Finance Tips - What is Present Value ?



In our previous tip on Future Value, we learnt that you could take an amount today, and grow it by an interest rate, and that it would be larger in the future... we called that amount in the future "Future Value", and we proved that the FV excel function was doing just that.

Nick's picture

4. Excel For Finance Tips - What is a discount factor ?



Finance is all about money, and working out today's value for money arriving in the future.

Nick's picture

3. Excel For Finance Tips - Continuous Compounding



So we looked at interest compounding and we found that even though the quarterly compounded rate was lower, the fact that it was compounded 4 times a year meant that the annual rate ended up higher.

Nick's picture

2. Excel For Finance Tips - Future Value


What is £1 worth today ?


... well, clearly it's £1 !

Nick's picture

1. Excel For Finance Tips - Calculate Compound Interest


The very first tip is also the basis of finance

Nick's picture

6. VBA Tips - ScreenUpdating - Make your code run faster


What can you do to make VBA code run faster? Well, when you run VBA code in Excel, you will notice that the screen flickerseach time an action is performed. Lets take a simple example:

screenupdating-excel-1 

Syndicate content