Find a percentage of a value
(percentage / 100) * base valueUse this when you want to know what X% of Y equals.
Mathematics
Calculate percentages, parts of a total, and percentage changes with clear formulas.
(percentage / 100) * base valueUse this when you want to know what X% of Y equals.
(part / total) * 100Use this when you want to know what percentage one value represents.
((final - initial) / |initial|) * 100The absolute initial value is used so the sign represents increase or decrease.
percentage = 15, base value = 200
result = 30
part = 45, total = 180
result = 25%
initial = 120, final = 150
result = 25% increase
Yes. Negative values are accepted when the formula is mathematically defined.
The total and initial value cannot be zero because those formulas would divide by zero.