Best method is to get rid of the #N/A from the cells by error-checking the
VLOOKUP formulas.
=IF(ISNA(vlookup formula)),"",vlookup formula))
Example of above...................
=IF(ISNA(VLOOKUP(G4,$A$1:$F$31,2,FALSE)),"",VLOOKUP(G4,$A$1:$F$31,2,FALSE))
Gord Dibben MS Excel MVP