Converting negative numbers in a range of cells to zero

D

Dede

Greetings!

How do I create a function that will change a range of cells that are
all negative numbers to zero? I want to keep the orginal negative
numbers as well. Thank you!!!
 
P

Peo Sjoblom

Use a help column and a formula like

=MAX(0,A1)

copy down/across, then copy and paste special as values in place


Regards,

Peo Sjoblom
 
T

tjtjjtjt

In another range use:
=MAX(0,A1), where A1 is the first cell in the original range.
Copy as needed.

tj
 
Top