Create Formula

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

Guest

Hi All, Please help me by creating a simple formula to findout the percentage
differences of "current month" - "last month" automatically whenever the data
is updated.
Grade Year Jan Feb Mar Apr May
1 2005 2555 3488 2213 3239

Thanks,
Lazia
 
math is (current month)/(prior month) - 1

If current month iis in C2 and prior in B2, then in the cell where you want
the % change, type:

=C2/B2-1
 
one way:

=INDEX(2:2,COUNTA(2:2))/INDEX(2:2,COUNTA(2:2)-1) - 1

Formatted as a percentage
 

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