John has attended:
Excel Advanced course
PowerPoint Intermediate Advanced course
VLOOKUP
Is it possible to change the standard error message from #N/A to something more user friednly such as "No match" or "0"
RE: VLOOKUP
try mixing vlookup with IF statements:
=IF(ISERROR(VLOOKUP(B2,Range1,1,FALSE)),0,VLOOKUP(B2,Range1,1,FALSE))
Please find attached an example