I'm trying to build a formula that will multiply a cell by 1.5 if the cell is a negative value and by 0.5 if the cell is positive. This is what I have:
=if(OR(A41<0,A41>0),A41*0.5,A41*1.5)
The results I get are only multiplied by the 0.5 though, it's like it never goes over to the 1.5 side no matter what the value is.
What am I doing wrong?
=if(OR(A41<0,A41>0),A41*0.5,A41*1.5)
The results I get are only multiplied by the 0.5 though, it's like it never goes over to the 1.5 side no matter what the value is.
What am I doing wrong?

Comment