Correct #N/A Value

W

winnie123

Hello,

I have created a formula using the threads I have seen and I can not get rid
of the #N/A value. The formula works ok if there is match or if the value of
$c$2 is not in my Sheet1.

Original formula was

=IF(ISNA(MATCH($C$17,Sheet1!$C:$C,0)),"",INDEX(Sheet1!A:A,MATCH($C$17&"_"&ROW(Sheet1!$A2),Sheet1!$F:$F,0)))

The #N/A appears when it has found a MATCH but there is only 1 row of data.

I have tried ISNA but my logic is not right, so it returns a value of TRUE.

Here is my revised formula


=IF(ISNA(MATCH($C$17,Sheet1!$C:$C,0)),"",ISNA(INDEX(Sheet1!A:A,MATCH($C$17&"_"&ROW(Sheet1!$A2),Sheet1!$F:$F,0),"
",INDEX(Sheet1!A:A,MATCH($C$17&"_"&ROW(Sheet1!$A2),Sheet1!$F:$F,0)))))

can you help me correct it?
 
M

Max

Try the below (all in one cell, split for easier clarity)
Copy direct from the post, then paste directly into the formula bar:
=IF(ISNA(MATCH($C$17,Sheet1!$C:$C,0)),"",
IF(ISNA(MATCH($C$17&"_"&ROW($A2),Sheet1!$F:$F,0)),"",
INDEX(Sheet1!A:A,MATCH($C$17&"_"&ROW($A2),Sheet1!$F:$F,0))))

Works ok? Click YES below to celebrate the success
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:23,000 Files:370 Subscribers:66
xdemechanik
 
M

Mike H

Try

=IF(ISNA(INDEX(Sheet1!A:A,MATCH($C$17&"_"&ROW(Sheet1!$A2),Sheet1!$F:$F,0))),"",INDEX(Sheet1!A:A,MATCH($C$17&"_"&ROW(Sheet1!$A2),Sheet1!$F:$F,0)))

Mike
 
B

Bob Phillips

=IF(OR(ISNA(MATCH($C$17,Sheet1!$C:$C,0)),ISNA(MATCH($C$17&"_"&ROW(Sheet1!$A2),Sheet1!$F:$F,0))),"",
INDEX(Sheet1!A:A,MATCH($C$17&"_"&ROW(Sheet1!$A2),Sheet1!$F:$F,0)))
 
M

Mike H

Hi,

I don't suppose it makes a lot of diffferenece but

&"_"&ROW(Sheet1!$A2)

simply returns _2 so there's no need to refer to another sheet

&"_"&ROW($A2),

will do it.

Mike
 
W

winnie123

Thanks very much, it works a treat.

Max said:
Try the below (all in one cell, split for easier clarity)
Copy direct from the post, then paste directly into the formula bar:
=IF(ISNA(MATCH($C$17,Sheet1!$C:$C,0)),"",
IF(ISNA(MATCH($C$17&"_"&ROW($A2),Sheet1!$F:$F,0)),"",
INDEX(Sheet1!A:A,MATCH($C$17&"_"&ROW($A2),Sheet1!$F:$F,0))))

Works ok? Click YES below to celebrate the success
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:23,000 Files:370 Subscribers:66
xdemechanik
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top