Book Image

Excel 2010 Financials Cookbook

By : Andre Odnoha
Book Image

Excel 2010 Financials Cookbook

By: Andre Odnoha

Overview of this book

<p>Excel is one of the mostused software tools in the world and just about every business has a copy somewhere. Despite its power and flexibility it is not always clear how to use it to perform some of the most important tasks in any business: organizing, analysing, and presenting financial information.<br /><br />Excel 2010 Financials Cookbook contains a rich collection of useful techniques for handling financial data in Excel. From integrating data from a variety of different sources, through organazing and analyzing financial data, to presenting it in a variety of graphical forms, this book has you covered.<br /><br />The book deals first with "normalizing" financial data -- that is, bringing data from a number of different sources into a single format where you can analyze them together. Then you'll learn techniques for managing and analyzing the data before discovering ways to present it graphically. The book then looks at Excel's built in features for financial analysis, and even shows how you can combine the built in features to build your own analysis functions.</p>
Table of Contents (14 chapters)
Excel 2010 Financials Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Analyzing financial data with pop-up tools


We have discussed and learned how powerful a quick analysis can be for determining profitability and other factors of finance, specifically the snapshot attained from a five-number summary. In this book, we have also discussed methods for formatting data tables and creating analysis worksheets for viewing this information. However, with changing data, the ability to attain a summary analysis on data without having to formally build an analysis can be extremely valuable.

In this recipe, you will learn to create an add-in function that will provide a five-number summary of selected data, on-demand.

How to do it...

We will begin this recipe by opening a new blank worksheet:

  1. 1. Within the Excel worksheet, press Alt + F11 on the keyboard to open the visual basic editor (VBE).

  2. 2. Within the VBE, from the toolbar, choose Insert | Module.

    This will open a blank module:

  3. 3. Enter the following code:

    Sub AnalysisPop()
    Dim nRange As Range
    Dim min1, q1, med, q3, max1...