View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
ottodesque ottodesque is offline
external usenet poster
 
Posts: 9
Default How do I combine ISNA and IF functions

When I try this formula it tells me that a parenthesis is missing but I
cannot figure out where.

"Jacob Skaria" wrote:

Try

=IF(OR('All Audit Compilation 1'!K3584="P",ISNA('All Audit Compilation
1'!K3584),"",1)

--
If this post helps click Yes
---------------
Jacob Skaria


"ottodesque" wrote:

I am trying to write a formula which will return a value of blank if the
contents of cell All Audit Compilation 1'!K3584 are NA or P and a value of 1
if not NA or P. I started with =IF(ISNA('All Audit Compilation 1'!K3584),"")
but it still returns a value of False if the field is blank and true if NA.
I have the formula IF('All Audit Compilation 1'!K3585="P",,"1") which works
on its own but I do not know how to combine the two formulas