I need a formula to calculate a percentage of a number in another cell.
For example. if the number is $1000. I need the total of 30% for the first $500 and then 20% for the remaining amount. So the answer for $1000 should be $250. (if the initial amount was $1500 then the final answer I need is $350).
2006-09-29T11:19:09Z
UPDATE: the number I need to get the percentage from will constantly be changing. So the formular needs to be general. With some sort of IF/THEN statement.
2006-09-29T11:22:16Z
UPDATE: Sometimes the number will be less than $500
dollhaus2006-09-29T11:20:31Z
Favorite Answer
assume the number is in cell C8.
Then you want, in your target cell:
=(500*.3) + ((C8-500)*.2)
That'll work as long as the value in C8 is $500 or greater.
Let's say you want to calculate a sales tax for different states, compute a grade for a test score, or determine a percent change in sales between two fiscal quarters. There are several ways to calculate percentages.
Percentages are calculated by using the following equation:
amount/total = percentage
Where percentage is in decimal format.
To quickly display the result as a percentage, Click Percent Style on the Formatting toolbar.
Edit: This only works if the value in cell A1 is greater than 500. If you aren't sure if the initial value will be greater than your 500 requirement, then it's more complicated.
=IF(A1<=500,A1*0.3,500*0.3+ (A1-500)*0.2)
(The editor keeps chopping off the last part. the above goes on one line)