I am just wrapping up a project which involved adding some new functionality to an existing Excel financial model. The model was fairly typical: in a nutshell, it contains financial forecasts for every product of a company, and aggregates the results into the overall value of the portfolio of products.
One aspect which ended up being pretty tedious was the creation of summaries. The spreadsheet was very nicely structured; it made good use of named ranges to describe input variables – but it also used them heavily in output summaries. As it turns out, this is error-prone and makes the maintenance and reorganization of sheets quite a hassle.
So I struggled for a while with this issue, and came up with a way to build summaries in Excel using a different technique; it relies on the INDIRECT function, and offers a few interesting benefits.
More...