% of increase or decrease formula

elvezrulz

New Member
Joined
Mar 14, 2011
Messages
32
I need a formula that will take 2 numbers and spit out the percentage of increase or decrease. Thank you in advance.
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
That doesn't work for this because I need it to understand that on it's own. I have way too many cells to do each one manually like that.
 
Upvote 0
Does this work:
Code:
=IF(A1>B1,B1-A1,A1-B1)
Formatted (as suggested) as percent? You can then drag this formula down for your rows
 
Upvote 0
Re-reading your original post, asking for increase or decrease, do you mean it'll always be the change from the value in 1st column to the value in the second column? If so, then can't you just use:
Code:
=(B1-A1)/B1
Then format as percentage and drag down all your rows?
 
Upvote 0
Re-reading your original post, asking for increase or decrease, do you mean it'll always be the change from the value in 1st column to the value in the second column? If so, then can't you just use:
Code:
=(B1-A1)/B1
Then format as percentage and drag down all your rows?

Yes, that works. I was confused because someone here at work had given me some convoluted formula and it was spitting out really weird results. Very simple, many thanks!
 
Upvote 0

Forum statistics

Threads
1,224,592
Messages
6,179,789
Members
452,942
Latest member
VijayNewtoExcel

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