Apr 28 2023 12:06 PM
If I want to run a formula that is IF cell E1 is less than 0, than 0, if greater than, then e1/d1 what would it look like. Thanks for any help as I am not great with IF than formulas.
Apr 28 2023 12:08 PM
Apr 28 2023 12:26 PM
Apr 28 2023 12:47 PM
SolutionThe formula would return #DIV/0! if D1 equals 0, not if E1 equals 0.
Perhaps
=IF(OR(E1<0,D1=0),0,E1/D1)
Apr 28 2023 12:49 PM
Apr 29 2023 02:41 AM