Target Graph in Excel Using Polar Chart

by Grovkillen in Circuits > Software

10289 Views, 10 Favorites, 0 Comments

Target Graph in Excel Using Polar Chart

temp_-1606312556.jpg
This Instructable is a proof of concept rather than a "this will work for every aspect imagianable". Please be inspired by it and tweak it to fit your specific use.

I made this for our company to show order delivery precision. The old one which showed the hit rate in percent was just plain useless because if we missed the delivery date by one day (even ahead of time) the system would report it as a miss. We had around 70-80% hit rate but 99% if we calculated 1 day ahead or late. Thus this target graph would be alot more useful and is not making everyone think that the delivery is aweful.

Make Your Data

temp_-1402786827.jpg

We need for this graph to work to have the time difference (or whatever you want to display) to be in always positive so I use the absolute "=ABS()" formula to make this happen.

Insert a Polar Chart

temp_1850945422.jpg

As you see the order names are showing for every row and thus making the graph ugly looking. We'll remove them by doing... (next step).

Filter Really Off Deliverys

temp_433298782.jpg
temp_-884899217.jpg
temp_872451320.jpg
temp_-2049246564.jpg

We make a new column that evaluates the difference. If the difference is above a given number the order name is shown. I use "=IF(...)". We then have to reassign the values to this column (shown in the second and third picture).

Remove Lines Etc.

temp_-2134177191.jpg

Right click on all the chart elements (lines etc.) and use "no line" and "no filling" etc.

Use Picture As Break Points

temp_-742056992.jpg
temp_-609106313.jpg

Right click on the graph break points and remove the lines between them. Then use the "Bullet_30x28.png" as a picture for the break points.

"Bullet_30x28.png" found in "Pictures.zip" in the introduction step...

Use a Background Image As Target

temp_-1246599127.jpg
temp_-807936076.jpg

Right click on the graph area and use the picture "Target_800x800.png" as a background picture.

"Target_800x800.png" found in "Pictures.zip" in the introduction step...

Extra Tweak (scatter Bullet Holes a Little)

temp_1394335133.jpg

By using this formala for the "Difference In Days" column the "bulls eye" shots will scatter just a little bit.

=IF(ABS(..)=0;1/RANDBETWEEN(1;10);ABS(..))