Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Trying to figure out the % difference(increase or decrease) between two #s
(A1 was last year, B1 is this year): A1 = $65,902 B1 = $32,732 The way I did it was: IF(ISERROR((B1-A1)/B1),"--",(B1-A1)/B1) which returns a value of: 101% Which is wrong as it should be approximately 50%. I don't want to have to change my formula in each row based on if last year was higher or lower than this year... Thanks! |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=IF(A1=0,"--",(B1-A1)/A1)
-- David Biddulph "Muskoka83" wrote in message ... Trying to figure out the % difference(increase or decrease) between two #s (A1 was last year, B1 is this year): A1 = $65,902 B1 = $32,732 The way I did it was: IF(ISERROR((B1-A1)/B1),"--",(B1-A1)/B1) which returns a value of: 101% Which is wrong as it should be approximately 50%. I don't want to have to change my formula in each row based on if last year was higher or lower than this year... Thanks! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Averageif Calcs | Excel Discussion (Misc queries) | |||
Mercantile Plumbing calcs | Excel Worksheet Functions | |||
What are the calcs in PMT | Excel Worksheet Functions | |||
Time calcs | Excel Discussion (Misc queries) | |||
Time Calcs | Excel Worksheet Functions |