Change the negative number to zero in Excel and Google Sheets
=IF(A2<=0,0,A2)
=IF(A2<=0,0,A2)
=IF(A2<=0,0,A2)
A2<=0 = condition to find if the cell is less than or equal to zero
A2<0 = condition to find negative value
The condition to find if the cell is less than or equal to zero and if TRUE assign the value to 0 if not will get the value of the cell. If you want to keep 0 value and only change negative value change condition from <=0 to <0
=IF(A2<=0,0,A2)
A2<=0 = condition to find if the cell is less than or equal to zero
A2<0 = condition to find negative value
The condition to find if the cell is less than or equal to zero and if TRUE assign the value to 0 if not will get the value of the cell. If you want to keep 0 value and only change negative value change condition from <=0 to <0