Presenting Penetration

starnold

Board Regular
Joined
Feb 4, 2004
Messages
57
Does anyone know a way of presenting data to show a under/over presentation?

I will have a list of data where 100 is the centre point and I want a way to show the under/over penetration from that point.

For example I could have the below data:

Category Spend
A 150
B 50
C 500
D 10

For categories A & C it would be presented to the right of the centre point as they are over 100 and B & D they would be presented to the left of the centre point as they are under 100?
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
In A1, enter =if(B1<100,100-B1,"")
In C1, enter =if(C1>100,C1-100,"")

Copy those down as far as your data goes.
 
Upvote 0
thanks for the reply but I wanted a graphical representation of the data not jsut the actual figures
 
Upvote 0
Assuming your data ranges from B1 to B8,

To the left of your data, enter

=IF($B1<100,REPT("█",(100-B1)/(MAX($B$1:$B$8)-100)*25),"")

To the right of your data, enter

=IF($B1>100,REPT("█",(B1-100)/(MAX($B$1:$B$8)-100)*25),"")

Right align the left hand data and left align the right hand data. Format each to the desired font color.

Adjust the range to fit your data, and changing the 25 in the formula will make all the bars proportional larger or smaller to suit your needs.
 
Upvote 0

Forum statistics

Threads
1,224,503
Messages
6,179,134
Members
452,890
Latest member
Nikhil Ramesh

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top