How To Calculate Percentages?

Bazza06

New Member
Joined
Dec 3, 2015
Messages
18
Office Version
  1. 365
Platform
  1. Windows
  2. MacOS
Hi,

What formula do I need to enter in order to create an automated calculation of percentage?

For example, if I have the figure 100 in cell 1A and I want to add 8% and have that appear in 2A, and then by dragging the cells down have each subsequent cell add a further 8% to the previous total, how do I achieve that?

Thanks for your help.
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Formula for A2 could be
= A1 * 1.08

You could then drag that down the column if desired.
 
Upvote 0
Solution
I suggest that you update your Account details (or click your user name at the top right of the forum) so helpers always know what Excel version(s) & platform(s) you are using as the best solution often varies by version. (Don’t forget to scroll down & ‘Save’)

I suspect that your question may have already been answered but another interpretation is that you want to keep adding 8% of the original value as opposed to 8% of the last calculated value.

22 06 19.xlsm
A
1100
2108
3116
4124
5132
6140
Add %
Cell Formulas
RangeFormula
A2:A6A2=A1+0.08*A$1
 
Upvote 0
Thanks to everyone that replied.
I tried the first suggestion from @johnnyL which worked perfectly for what I required.
I'm sure all other suggestions would work equally well, so thank you.
@johnnyL I'm not an experienced user of Excel, so unsure of the difference between formula and VBA.
@Peter_SSs - thanks for the suggestion to update my account details. I'll go ahead and do that.
 
Upvote 0
thanks for the suggestion to update my account details. I'll go ahead and do that.
Thanks for updating. (y)

You may well decide to stick with the marked suggestion, but since you have MS365, if you knew how far down you wanted the results to go, you could do it with a single formula that does not need to be dragged down at all. For example, in the mini-sheet below, the post 3 formula has been entered and dragged down to fill 9 rows. The formula in B2 does not need to be dragged down at all, the results automatically 'spill' down. As you can see, the results are the same.

22 06 19.xlsm
AB
1100100
2108108
3116.64116.64
4125.9712125.9712
5136.048896136.048896
6146.9328077146.9328077
7158.6874323158.6874323
8171.3824269171.3824269
9185.093021185.093021
10199.9004627199.9004627
Add %
Cell Formulas
RangeFormula
B2:B10B2=B1*1.08^SEQUENCE(9)
A2:A10A2=A1*1.08
Dynamic array formulas.
 
Upvote 0
Thank you, Peter.
That's really helpful to have an alternative solution as I may be looking at scenarios over a defined period (y)
 
Upvote 0

Forum statistics

Threads
1,214,653
Messages
6,120,751
Members
448,989
Latest member
mariah3

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