• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

IfNa

Hi Kim Chanthan,

Always set a meaningful title, just 4 alphabets makes no sense.

Try the solution provided above, or use IFERROR for column L.


Quoting your text in the attachment:
*** Do you know what wrong with colum L? I mean in cell L4 and L6 should be appear with blank as per my fomular, but why it still appear #N/A?

See how your OR formula in L4 produce error:

=IF(OR(K4=D4,ISNA(K4)),"","Error")
Evaluate the first OR condition, you will see #N/A, and TRUE for 2nd:

=IF(OR(#N/A,TRUE),"","Error")

=IF(#N/A,"","Error")

#N/A
Regards,
 
Back
Top