Link to home
Start Free TrialLog in
Avatar of marmaxx
marmaxx

asked on

Calculating Percentage Difference

What is the easiest way to calculate the percentage increase between two numbers?

For example, if I have one number - 13.00, and another - 15.75, what is the easiest way to calculate the percentage increase?
Avatar of Webstorm
Webstorm

Hi marmaxx,

the easiest way is :
   100.0 * secondValue / firstValue - 100.0;
ASKER CERTIFIED SOLUTION
Avatar of Webstorm
Webstorm

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial