ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   IF and OR nested function (https://www.excelbanter.com/excel-discussion-misc-queries/206886-if-nested-function.html)

Jon M

IF and OR nested function
 
I need to test a cell to see if the cell is blank or if the value is < 0.
Trying:

=IF((OR(A2="",A2<0),1,0)) should return 1 if it is blank or less than 0 and
0 if cell contains a value 0.

Keep getting an error.

Can you tell me where I am going wrong?

Thanks,

Niek Otten

IF and OR nested function
 
What error do you get?

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

"Jon M" wrote in message
...
I need to test a cell to see if the cell is blank or if the value is < 0.
Trying:

=IF((OR(A2="",A2<0),1,0)) should return 1 if it is blank or less than 0
and
0 if cell contains a value 0.

Keep getting an error.

Can you tell me where I am going wrong?

Thanks,



Mike H

IF and OR nested function
 
Hi,

It was a parenthesis problem

=IF(OR(A2="",A2<0),1,0)

or to take care of text

=IF(OR(A2="",ISNUMBER(A2<0)),1,0)

Mike

"Jon M" wrote:

I need to test a cell to see if the cell is blank or if the value is < 0.
Trying:

=IF((OR(A2="",A2<0),1,0)) should return 1 if it is blank or less than 0 and
0 if cell contains a value 0.

Keep getting an error.

Can you tell me where I am going wrong?

Thanks,


Jon M

IF and OR nested function
 
great, thanks!


"Mike H" wrote:

Hi,

It was a parenthesis problem

=IF(OR(A2="",A2<0),1,0)

or to take care of text

=IF(OR(A2="",ISNUMBER(A2<0)),1,0)

Mike

"Jon M" wrote:

I need to test a cell to see if the cell is blank or if the value is < 0.
Trying:

=IF((OR(A2="",A2<0),1,0)) should return 1 if it is blank or less than 0 and
0 if cell contains a value 0.

Keep getting an error.

Can you tell me where I am going wrong?

Thanks,



All times are GMT +1. The time now is 02:02 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com