Project goal attainment

This chart is an example of a 100% stacked column chart. The data shown in the chart represents projects over a three year period, categorized as hit goals, missed goals, and exceeded goals. I think this is a good example of how a 100% stacked column chart can work well to show trends over time, in this case highlighting the worrying trend of more projects with missed goals.

The data used to plot the chart looks like this:

Lookup latest price

The LOOKUP function assumes data is sorted, and always does an approximate match. If the lookup value is greater than all values in the lookup array, default behavior is to "fall back" to the previous value. This formula exploits this behavior by creating an array that contains only 1s and...Read more

MMULT Function

The MMULT function returns the matrix product of two arrays, sometimes called the "dot product". The result from MMULT is an array that contains the same number of rows as array1 and the same number of columns as array2. The MMULT function appears...Read more

PERMUT Function

The PERMUT function returns the number of permutations for a given number of items. A permutation is a combination where order matters. In other words, a permutation is an ordered combination.

There are two types of permutations:

  1. Permutations where repetition is not
  2. ...Read more

COMBIN Function

The COMBIN function returns the number of combinations for a given number of items. A combination is a group of items where order does not matter.  The COMBIN function does not allow repetitions. To count combinations that allow repetitions, use the...Read more

Product mix over time

This is an example of a 100% stacked area chart. This tricky chart type can be quite hard to read. The idea is to visually show a percentage distribution across categories at specific intervals, but you lose the ability to compare absolute numbers, unless you add as data labels. In this case, data labels are only used to display the series name.

Pages