Excel Summit South Reminder

I have just signed up for the Excel Summit South.

Anyone wanting a 20% discount has until Thursday 31st December.

 

 

Posted in Excel | Tagged , , , , | Leave a comment

Boxing Day on the James Craig

The James Craig is a 19th Century square rigger, restored by the Sydney Heritage Fleet, which makes regular sailings from Sydney Harbour open to the public, including a Boxing Day trip to observe the departing Sydney-Hobart race:

This slideshow requires JavaScript.

The crew (all volunteers) told us of the history of the vessel, including the tough life at sea of the crew of just 18, managing extreme conditions with no external communication, and no safety aids, which reminded me of:

Posted in Bach | Tagged , , , , | Leave a comment

More on Sums

My post from last week, on using the Aggregate function to find the maximum and minimum of a range ignoring errors, was linked in the Contextures Blog’s weekly roundup, which also linked to the Contextures page of Sum Function examples.  This includes sub-totals, grand-totals, Offsets, Sumifs, Sumproducts, and much more.  It’s a comprehensive list, including clear examples and videos, and well worth a visit.

The Contextures Blog on Sums

Posted in Excel | Tagged , , , , | Leave a comment

Sean Taylor

Another excellent UK musician I had never heard of, and judging by the number of YouTube hits, neither have you:

Someone comments that John Martyn comes to mind, so maybe this duo is not so surprising:

Sean Taylor, Wikipedia

Sean Taylor, Official Site

Posted in Bach | Tagged , | Leave a comment

Max, Min, and Aggregate

Recently I needed to find the maximum and minimum of a range of values including some #N/A values.  Searching found a variety of solutions, of which the simplest (that works in all versions) seems to be:

  • =MAX(IF(ISNUMBER(datarange),datarange))
  • =MIN(IF(ISNUMBER(datarange),datarange))

The function must be entered as an array function, i.e. type the function, then press Ctrl-Shift-Enter, rather than just Enter. The screenshot below shows a simple example:

maxmin1-1

The search also found the Aggregate function, which is new in Excel 2010, and provides a number of options for ignoring sub-totals as well as errors. The Aggregate function will return a number of different statistical functions, as well as Max and Min. These are documented with a tool=tip as the function is entered, as shown in the screen-shot below:

maxmin1-2

Posted in Excel | Tagged , , , , | 5 Comments