percentual increase/decrease

P

Portuga

Hello,

How can I calculate automatically the % increase or decrease o
2values?

A1 = 100
B1 = 200
C1 must = 100%

Thanks
 
J

JE McGimpsey

One way:

=(B1-A1)/A1

formatted as a percentage.

Or, more efficiently:

=B1/A1 - 1

and, more robustly:

=IF(A1<>0, B1/A1-1, "NM")
 
T

Tushar Mehta

%change is defined as =(new value - old value)/old value

--
Regards,

Tushar Mehta
www.tushar-mehta.com
Excel, PowerPoint, and VBA add-ins, tutorials
Custom MS Office productivity solutions
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top