How to calculate changes in the value

Myura

New Member
Joined
Feb 26, 2016
Messages
36
Hi!
I want to calculate changes in the prices of companies. (one year change). My table looks like this
Date-------Company-------Price
2001-------A----------------20
2002-------A----------------25
2001-------B----------------30
2002-------B----------------35

So i have to calculate the % changes of the price change.
%chg of A at 2002 = (25-20)/20

Here I know I have to use filters to make sure they do not mix up companies. But I do not know how to do it.

Please help me to do this.

Thanks in advance
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
If you first filter the data so that all the companies are order A-Z and then by year (lowest-highest) then try (in cell D3)
=IF(B3=B2,(C3-C2)/C2,"") and autofill

where B3 is the second cell in the company column, B2 is the first cell in the column column; C3 is the second cell in the price column; C2 is the first cell in the price column

This will leave a blank where the company changes and add the % growth if the company is the same
 
Upvote 0

Forum statistics

Threads
1,216,085
Messages
6,128,733
Members
449,465
Latest member
TAKLAM

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