E EmPhillips New Member Jan 21, 2015 #1 I need an excel formula that subtracts cell A3 from A2 and but if the number is less than 0 it stills gives me the value of 0 and not a negative number....Help!
I need an excel formula that subtracts cell A3 from A2 and but if the number is less than 0 it stills gives me the value of 0 and not a negative number....Help!
John Jairo V Well-Known Member Jan 21, 2015 #2 Hi @EmPhillips. Try this formula: =MAX(0,A2-A3) But, if you want with IF function: =IF(A2-A3<0,0,A2-A3) Blessings!
Hi @EmPhillips. Try this formula: =MAX(0,A2-A3) But, if you want with IF function: =IF(A2-A3<0,0,A2-A3) Blessings!
E EmPhillips New Member Jan 21, 2015 #3 Thank you John that was exactly what I needed. I was missing one of the comma's and just couldn't see it for the weeds!!!
Thank you John that was exactly what I needed. I was missing one of the comma's and just couldn't see it for the weeds!!!