G Guest Aug 6, 2007 #1 Is there anyway to not display '#n/a' when use a 'vlookup' formula?(or maybe display a '0' instead of a 'n/a')
Is there anyway to not display '#n/a' when use a 'vlookup' formula?(or maybe display a '0' instead of a 'n/a')
G Guest Aug 6, 2007 #2 =IF(ISNA(YourVlookupFormula),"",YourVlookupFormula) or, replace the "" with a zero Vaya con Dios, Chuck, CABGx3
=IF(ISNA(YourVlookupFormula),"",YourVlookupFormula) or, replace the "" with a zero Vaya con Dios, Chuck, CABGx3
G Guest Aug 6, 2007 #3 Ok it did not work ... it change the one's with information to blank to. this is my formula =IF(VLOOKUP(E2,'4 Jan 07'!$D:$L,1,FALSE)=E2,VLOOKUP(E2,'4 Jan 07'!$D:$L,9,FALSE)," ") were would insert the 'isna" part to my formula?
Ok it did not work ... it change the one's with information to blank to. this is my formula =IF(VLOOKUP(E2,'4 Jan 07'!$D:$L,1,FALSE)=E2,VLOOKUP(E2,'4 Jan 07'!$D:$L,9,FALSE)," ") were would insert the 'isna" part to my formula?
G Guest Aug 6, 2007 #4 =IF(ISNA(IF(VLOOKUP(E2,'4 Jan 07'!$D:$L,1,FALSE)=E2,VLOOKUP(E2,'4 Jan 07'!$D:$L,9,FALSE)," ")),"",IF(VLOOKUP(E2,'4 Jan 07'!$D:$L,1,FALSE)=E2,VLOOKUP(E2,'4 Jan 07'!$D:$L,9,FALSE)," ") Vaya con Dios, Chuck, CABGx3
=IF(ISNA(IF(VLOOKUP(E2,'4 Jan 07'!$D:$L,1,FALSE)=E2,VLOOKUP(E2,'4 Jan 07'!$D:$L,9,FALSE)," ")),"",IF(VLOOKUP(E2,'4 Jan 07'!$D:$L,1,FALSE)=E2,VLOOKUP(E2,'4 Jan 07'!$D:$L,9,FALSE)," ") Vaya con Dios, Chuck, CABGx3
G Guest Aug 6, 2007 #5 Try this: =IF(COUNTIF('4 Jan 07'!$D:$L,E2),VLOOKUP(E2,'4 Jan 07'!$D:$L,9,FALSE)," ")
B Bernard Liengme Aug 6, 2007 #6 An alternative is to use COnditional Formatting to hide the #N/A best wishes