Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I would like a if/then formula to look at a cell and if that cell is equal or
less than zero to simply product a zero, not a negative. Or any other formula that would do this... Just thought it would be an if/then.. thanks in advance. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
What do want to do if the cell is greater than 0?
=IF(A1<=0,0,A1) Or, to make it more robust: =IF(ISNUMBER(A1),IF(A1<=0,0,A1),0) Biff "Roger" wrote in message ... I would like a if/then formula to look at a cell and if that cell is equal or less than zero to simply product a zero, not a negative. Or any other formula that would do this... Just thought it would be an if/then.. thanks in advance. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
try
=MIN(A1,0) "Roger" wrote: I would like a if/then formula to look at a cell and if that cell is equal or less than zero to simply product a zero, not a negative. Or any other formula that would do this... Just thought it would be an if/then.. thanks in advance. |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Pretty sure you have a typo the
try =MIN(A1,0) =MAX(A1,0) Biff "Duke Carey" wrote in message ... try =MIN(A1,0) "Roger" wrote: I would like a if/then formula to look at a cell and if that cell is equal or less than zero to simply product a zero, not a negative. Or any other formula that would do this... Just thought it would be an if/then.. thanks in advance. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|