why giving me N/A?

daveyc18

Well-known Member
Joined
Feb 11, 2013
Messages
707
Office Version
  1. 365
  2. 2010
=IF(OR(G8=0,AB8>0),0,AB8)

g8 is N/a....AB8 is 0.....shouldnt the if statement produce 0? it's giving me N/A
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
N/a is not a zereo !!
If N/a is a possiibility, try
Code:
=IF(OR(G8=0,G8="N/a",AB8>=0),0,AB8)
 
Last edited:
Upvote 0
so

=IF(OR(G8=0,ISNA(G8),AB8>=0),0,AB8)

or

=IF(OR(G8=0,G8=#N/A,AB8>=0),0,AB8)
 
Upvote 0
Hi JP, are you getting 0 returned for a #n/a error in G8 with those formula?
 
Upvote 0
ya not working for me...


yah, i know N/A isn't zero, which is why i thought the original formula would work.

in my original formula...i thought excel would be smart enough to decide that if g8 is NOT 0 (which means N/A falls into that category) OR if AB8 is NOT greater than 0, it would directly look at the value of ab8.
 
Upvote 0
I get 0 from the formula if G8 is #N/A, or if G8 is zero, or if AB8 is > zero. I thought it was funny you'd want 0 if G8 is not zero, but that's the formula you posted.
 
Upvote 0

Forum statistics

Threads
1,213,527
Messages
6,114,144
Members
448,552
Latest member
WORKINGWITHNOLEADER

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top