Increase negative % or decrease positive %

Jtucker10278

Board Regular
Joined
May 14, 2017
Messages
57
This is more of Math question, and reporting standard question. but I will probably need some formula help with the correct answer.

if last Qtr I produce 800 Widgets and this Qtr I produce 1250 Widgets Increase = (new - original) / Original or (1250 - 800) / 800= 56% increase
but if last Qtr I produced 1250 Widgets and this Qtr I produced 800 Decrease = (Original - new) / Original or (1250 - 800) / 1250 = 36% decrease
but in both cases it was only 450 Widgets different.

Now lets say I am looking at how many Minutes it takes to crate widget.

Last qtr it took 22 min per widget and this qtr it is taking 13 min per widget it is a decrease in min but a big increase in productivity
the formula (22-13)/22 = 40% but thats really right because it was an increase in the direction we wanted the number to go.
AND the formula (22-13)/13 = 69% but I don't know if that is accurate either

I could invert the formula to show -40% or -69% (but then I'm up to like 3 if statement so i can have single formula that calculates % for all scenarios

Andy why, why are all sales and productivity reports done this way showin increasing or decreasing % instead of change %

Ie 2 | b-a | / (b+a) x 100

thanks for any thoughts or input
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
@Jtucker10278 I'm neither a mathematician nor an analyst so I could well be talking rubbish.
No one size fits all!
I think it's a question of semantics and requires that the formula is customised to ensure that positive and negative of pure mathematics reflects the required direction of 'Improvement' or 'Deterioration'.

In the example below there are subtle differences, eg > changes to <.

AutoTraining.xlsm
ABCD
1Output Widgets Per Period
2OriginalNewVariance
3800125056% Increase
4125080036% Decrease
5
6Production Rate Minutes Per Widget
7OriginalNewVariance Widgets/MinVariance Min/Widget
8221341% Increase69% Decrease
9132269% Decrease41% Increase
10
Sheet6
Cell Formulas
RangeFormula
C3:C4C3=ROUND(ABS((B3-A3)/A3*100),0)&"% "&IF(B3>A3,"Increase","Decrease")
C8:C9C8=ROUND(ABS((B8-A8)/A8*100),0)&"% "&IF(B8<A8,"Increase","Decrease")
D8:D9D8=ROUND(ABS(((1/B8)-(1/A8))/(1/A8)*100),0)&"% "&IF(B8>A8,"Increase","Decrease")


HTH
 
Upvote 0

Forum statistics

Threads
1,217,414
Messages
6,136,492
Members
450,016
Latest member
murarj

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