Forum Discussion
Whitney Johnson
Oct 25, 2018Copper Contributor
Excel If Functions
I am trying to create an IF statement, but it is not working. I need it to say if cell1 and cell2 are NA the true is 0 but if it is >0 to = the sum of cell1 and cell2. I have tried so many wa...
- Oct 25, 2018
Hi
=IFNA(SUM(A1:A2),0)
Lorenzo Kim
Oct 25, 2018Bronze Contributor
try:
assuming cell1 is A1 and cell2 is A2
=IF((A1+A2)>0,A1+A2,0)
assuming cell1 is A1 and cell2 is A2
=IF((A1+A2)>0,A1+A2,0)