Reputation: 1690
I have a cell with a negative number, but I want to put 0 instead of negative number. How can I make this? Any help?
Upvotes: 0
Views: 940
Reputation: 37145
You can also use
=IF(A1<0,0,A1)
Upvotes: 1
Reputation: 765
if you write =MAX(0;your formula)
=MAX(0;your formula)