Please help me with % calcualtion...thanks!

pedie

Well-known Member
Joined
Apr 28, 2010
Messages
3,875
Time spent on Learning was increased from <TABLE style="WIDTH: 52pt; BORDER-COLLAPSE: collapse" cellSpacing=0 cellPadding=0 width=69 border=0><COLGROUP><COL style="WIDTH: 52pt; mso-width-source: userset; mso-width-alt: 2523" width=69><TBODY><TR style="HEIGHT: 12.75pt" height=17><TD class=xl67 style="BORDER-RIGHT: windowtext 0.5pt solid; BORDER-TOP: windowtext 0.5pt solid; BORDER-LEFT: windowtext 0.5pt solid; WIDTH: 52pt; BORDER-BOTTOM: windowtext 0.5pt solid; HEIGHT: 12.75pt; BACKGROUND-COLOR: #8db4e3" width=69 height=17>6.26</TD></TR></TBODY></TABLE>in Jan to
<TABLE style="WIDTH: 52pt; BORDER-COLLAPSE: collapse" cellSpacing=0 cellPadding=0 width=69 border=0><COLGROUP><COL style="WIDTH: 52pt; mso-width-source: userset; mso-width-alt: 2523" width=69><TBODY><TR style="HEIGHT: 12.75pt" height=17><TD class=xl67 style="BORDER-RIGHT: windowtext 0.5pt solid; BORDER-TOP: windowtext 0.5pt solid; BORDER-LEFT: windowtext 0.5pt solid; WIDTH: 52pt; BORDER-BOTTOM: windowtext 0.5pt solid; HEIGHT: 12.75pt; BACKGROUND-COLOR: transparent" width=69 height=17>53.33</TD></TR></TBODY></TABLE>in july 2010
in Hrs.

how do I calculaet the increased percentage?
Formula with explaination will be great!

Thank you all!
 

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.
Percentage increase is calculated as (New-Old)/Old.

Or in this case, (53.33-6.26)/6.26 or 752%
 
Upvote 0
I think you're looking for something like this:
Code:
=(([FONT=Arial]53.33-6.26)/6.26)*100[/FONT]
...or in a more general form (replace red and blue phrases with references to the cells containing the desired data)...
Code:
=(([FONT=Arial][COLOR=red]Second Value[/COLOR] - [COLOR=blue]First Value[/COLOR])/[COLOR=blue]First Value[/COLOR])*100[/FONT]

Explanation:
1) Find the difference between the two numbers (in this case 53.33 - 6.26 = 47.07)
2) Take the difference (47.07) and divide by the original number (47.07/6.26 = 7.519)
3) Multiply the result by 100: 7.519*100 = 751.9% = the percent increase from 6.26 to 53.33
 
Upvote 0
No problem. Also, that same formula works for percent decrease too with no modifications, so it will still work in the event that the second value is less than the first. Glad we could help.
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,691
Members
448,978
Latest member
rrauni

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