Excel Looping Through Sheet Code Names

This is an Excel VBA procedure to loop through worksheets using the worksheet code name.

Read More

CPA Australia's Management Accounting Conference

Presenting at the Management Accounting Conference 2017.

Read More

Full and Part Summaries with the Dictionary

Creating summaries using the Excel VBA scripting dictionary is something you will want to learn. The dictionary is powerful and can summarise data very quickly. This blog post takes you through the process of using the Excel Scripting Dictionary.

Read More

12 Month Rolling Chart

A 12 month rolling chart in Excel which will update both forwards and backwards dynamically on a chart.

Read More

Life on the Road

This years travel has finally commenced.  It has been a long time since I hit the road in any real way late last year from memory but once it starts it is the gift that keeps on giving.

Read More

Conditional Formatting with Format Cell

The article shows how to format an Excel cell with different colours through the format cell feature in Excel.

Read More

Excel Dashboards Essential Updates

This Excel dashboard displays revenue and expense metrics with some additional KPI data.  

Read More

Compare Two Lists on Different Sheets and Output Matches

Compare two lists with the Excel VBA scriting dictionary.  Output the results of the matching cells to a third sheet.

Read More

Copy/Paste Top n Visible Rows

I recently had a question regarding copying data after a filter had been applied.  What if we wanted the top n items from a list to be copied to another place.  The problem to address here is that a filtered list can have cells which are hundreds or thousands of rows apart.

Read More

Dependent and Non Dependent Comboboxes

Cascading combo boxes have been done online and I had a problem recently which knocked me for 6 as we say here in Australia.  Anyone who deals in cascading combo boxes will know only too well that if you are using a list and the Indirect formula to manage the combo boxes then the process can get very unruly very quickly.  One of the issues with comboboxes is that they are set up to work in sequence.  Combo box 1 feeds into combobox 2 which feeds combo box 3.  The combo boxes need to be filled out in that order.

Read More

Advanced Filter a List Automatically

I was recently working on an automated procedure to generate data in a list based on drop down (data validation) selection.  The idea is to change items in a drop down (data validation) and have the corresponding data table filter to the specific items chosen in your drop downs.  I have shown a formula based solution for this method (a long time ago) so if a more simplistic solution hits the mark - the link can be found here.

Read More

Auto-Highlight the Active Row When a Cell is Selected

Something different on theSmallman today - actually something different all together.  Since starting my Excel website and subsequent blog over 3 and a half years ago I have created over 300 pages from financial modelling to dashboard design to unlocking Excel's scripting dictionary.  I have writen every word myself and have drawn extensively on my posts on Ozgrid and Chandoo forums.  Today for the first time someone else is going to do the instructing.  The two handsome gentleman above are Kasper and Mikel.

Read More

Water Statistics Infographic in Excel

The above infographic is a look at how we use water and what is expected to happen if there is a 2 degrees increase in global temperatures .  Governments are good for changing long term policy for change in our world but if you want to enact real change you have to make it yourself.  If everyone collectively agrees to change - change happens in our world.  Our world will continue to grow in population.  If 7 billion people agreed to enact change as a collective - climate change, world poverty etc, would end very quickly in my opinion.

Read More

Excel Create or Remove a Table with VBA

There are times in Excel when you may wish to create a table on the fly with the assistance of VBA code.  I was in this position recently and needed to this with VBA.  A file was uploaded into a sheet and the task was to create a table and then use that table for more data manipulation.  The following Excel VBA procedure was what I ended up with.

Read More

Jump Directly to a Cell with Formula

I was involved in a post to trace the precedents and dependents of a cell.  My answer while accurate was a bit long winded as it turns out (happens more often than I like to admit).  Here is a link to the thread on the Chandoo forum. Chandoo Jump to Cell Thread 

The question was along the lines of how do I jump directly to a cell with formula? I was all about the “click on Formula - Trace Precedents - then click OK and it jumps to the sheet and cell which the formula references.” 

Read More

Excel Climate Change Infographic

This is an infographic based on our changing climate with statistics from the web showing the current state of affairs, all things climate change.

Read More

Excel Infographic Change

An infographic showing defence spending in first world countries and other key global metrics in a simple excel infographic,

Read More

Male Female Customer Infographic

So I am on the infographic trail again.  I have been doing a 3 part series for CPA Australia and have decided to make a few additional Excel infographics just for a bit of fun on the side.  With all of the inforgarphics on the site I have not built complex calculation engines.  I simply put a visual display together which is driven by the contents of Excel cells.  The result is an easy to maintain and update visual report.  With any luck some people might find the results useful in the work they do.

Read More

Excel VBA Filter by Icon Sets

Excel has been improving the autofiltering capabilities and this single topic forms the topic which I have happened upon the most.   I am probably like a lot of developers who had their eyes opened by the Excel loop through a range when you set criteria and Excel does the isolation for you.  The problem with this method occurs when you need to loop through thousands of rows.  This can slow your procedure considerably.  Using the autofilter with VBA by contrast is very quick and the time difference between a small list and a large list is negligible.  More recently Excel has introduced the ability to filter by icon sets.  The conditional formatting coloured arrows or chart indicators which appear in cell.

Read More