A few ideas come to mind.
Use a pie chart as has already been suggested. This will have two
slices, one for the # of zeros, the other for the number of 1s.
Use a stacked bar chart. Put the #1s in green at the bottom. Put the
(#zeros - #1s) on the top in red.
Use conditional charts. Suppose you have thresholds for #on-time, for
example. <80% is really bad 80-90% is OK, >90% is good. Suppose you
have % #on-time in B3. Then, in C3 enter =IF(B3<=0.8,B3,NA()) In D3
enter =IF(AND(B3>0.8,B3<=0.9),B3,NA()) and in E3 enter =IF(B3>0.9,B3,NA
())
Now, plot B3
3 in a stacked column chart (plot by column). Format the
the first series red, the 2nd yellow, and the third green.
[Somewhere on one of my computers is an XL file that has conditional
charts with gradual color transitions from red (at the bottom) to
yellow (middle) to green (the top) for a balanced scorecard. Just
don't remember which one.]
--
Regards,
Tushar Mehta
www.tushar-mehta.com
Excel, PowerPoint, and VBA add-ins, tutorials
Custom MS Office productivity solutions
In a Balanced Scorecard we use several indicators that are in a binomial or
either/or form: complete or incomplete; on-time or behind, etc. We use
charts in Excel to display other forms of indicators but are having trouble
coming up with a good graphic way of displaying this kind of data.
Any ideas?