#N/A help
Solved/Closed2 responses
=IF(C2=IF(ISNA(VLOOKUP(C2,Sheet1!B2:D17,1,FALSE)),"",C2),C2,IF(C2=IF(ISNA(VLOOKUP(C2,Sheet2!C2:E16,1,FALSE)),"",C2),C2,"Not Found"))
RayH,
Thank you immensely, but this formula suffers from the same affliction my formulas have; it will not read the second function of the formula. It reads the first function fine, and even returns the correct solution. But, it will not read the second function of the formula at all. The IF/ISNA returns a True or False, if an "#N/A" is detected. Now, this is the tricky part, True means the formula was NOT satisfied and should display "Not Found". False means the formula WAS satisfied and the content of C2 should be displayed. If the first function returns a True (#N/A detected), test the second function. If either function returns a False, display C2. If both show True (#N/A detected in both functions), show "Not Found". Your formula got me thinking on the right track and I think I'm close with:
=IF((IF(ISNA(VLOOKUP(c2,'consolidated list'!B2:L21563,1,false))="N/A")),if((isna(vlookup(c2,assigned!C2:O10950,1,false)))="N/A")),"Not Found",c500)
I believe my nesting is out of order though, and it keeps showing "INVALID" in the Function Arguments. Can you check it out and if I have not confused you to insanity, please let me know what you discover. Thank you!
Thank you immensely, but this formula suffers from the same affliction my formulas have; it will not read the second function of the formula. It reads the first function fine, and even returns the correct solution. But, it will not read the second function of the formula at all. The IF/ISNA returns a True or False, if an "#N/A" is detected. Now, this is the tricky part, True means the formula was NOT satisfied and should display "Not Found". False means the formula WAS satisfied and the content of C2 should be displayed. If the first function returns a True (#N/A detected), test the second function. If either function returns a False, display C2. If both show True (#N/A detected in both functions), show "Not Found". Your formula got me thinking on the right track and I think I'm close with:
=IF((IF(ISNA(VLOOKUP(c2,'consolidated list'!B2:L21563,1,false))="N/A")),if((isna(vlookup(c2,assigned!C2:O10950,1,false)))="N/A")),"Not Found",c500)
I believe my nesting is out of order though, and it keeps showing "INVALID" in the Function Arguments. Can you check it out and if I have not confused you to insanity, please let me know what you discover. Thank you!