FORMULA

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to create a formula to calculate percentage that compares a current year total to a previous year total. The resulting percentage may be positive or negative. As an example
year 2004 1837 year 2003 1765 the percentage difference is a 4.1% increas
year 2004 1765 year 2003 1837 the percentage difference is a 3.9% decreas

How would I create a formula to calculate that percentage

Thanks in advance
 
Hi
if A1 stores your 2003 value and B1 the 2004 value use the following
formula
=B1/A1-1
and format the resulting cell as percentage

--
Regards
Frank Kabel
Frankfurt, Germany

SHAMATNE said:
I need to create a formula to calculate percentage that compares a
current year total to a previous year total. The resulting percentage
may be positive or negative. As an example:
 
Hi,
Try =(CY-PY)/ABS(PY) where CY represents the Current
Variable, and PY represents the Prior Variable. Using the
Absolute function will allow you to evaluate trends that
may have a negative value.

HTH
-----Original Message-----
I need to create a formula to calculate percentage that
compares a current year total to a previous year total.
The resulting percentage may be positive or negative. As
an example:
 

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

Back
Top