Adding the third argument worked like a charm. FYI, J13
did have a formula, =if(iserror(j12/j11),"0",(j12/j11))
Thanks for your help!
-----Original Message-----
MPSr,
means if J13 is numerically greater than zero or any other character
including a space.
Another example.....
Say that J13 has the following formula:
=IF(B1>0,A1/B1,"")
With teh above, if B1 is not greater than zero, return a blank string.
That blank string will evaluate to being greater than zero.
To correct the formula to work with the formula in N16, you could use
=IF(B1>0,A1/B1,0)
If you still can't get it to work, post the formula that you have in J13.
One more option.....
Add a third argument to the AND statement:
=IF(AND(ISNUMBER(J13),J13>0,B16="X"),1000,"N/A")
The above will be true only if all of the following are true.
What's in J13 is a number, that number is greater than 0 and B16 = "X"
John
This way if J13 shows 0, N16 will show N/A. The formulas
you were given do exactly that.cases have to be true for the 1000 to appear. J13 "has"
to be greater than 0 while at the same time b16
equals "x".way to do this but after staring at it for so long I just
couldn't come up with the solution.stated in my problem. I think I should have said if J13
is >0 but not equal to 0. This way if J13 shows 0, N16
will show N/A.-----Original Message-----
Hi MPsr,-----Original Message-----
I know what I want the formula to do but cannot create
the end result. Here's what I hope you can solve.The results are to show in cell N16. If cell J13 is >0
then I want N16 to check cell B16 for "x" (text), if B16
is marked with an "x" then N16 is to show $1000, but if
B16 is blank then N16 is to show N/A.ELSE formula in this instance. Any help will be
appreciated!