B BigToque Lifer Oct 10, 1999 11,700 0 76 Jan 20, 2006 #1 What I want to do sounds simple. I have A1, B1 and C1. C1 stores the value of B1 subtract A1. What I want is for C1 to display 0 (zero) unless the result of the equation is > 1 (and to display the result) Is this possible? Is it even a macro?
What I want to do sounds simple. I have A1, B1 and C1. C1 stores the value of B1 subtract A1. What I want is for C1 to display 0 (zero) unless the result of the equation is > 1 (and to display the result) Is this possible? Is it even a macro?
L Len12345 Member Aug 31, 2001 41 0 61 Jan 20, 2006 #2 its just an equation. Type =if and it will show you how to do it. The following will work for your above example. =IF(A1>B1,A1-B1,0) EDIT: that might be backwords but I hope you get the idea
its just an equation. Type =if and it will show you how to do it. The following will work for your above example. =IF(A1>B1,A1-B1,0) EDIT: that might be backwords but I hope you get the idea
B BigToque Lifer Oct 10, 1999 11,700 0 76 Jan 20, 2006 #3 actually, i just figured that out... Thanks for the help