StarhawkGamer
Programmer
I'm attempting to do a mail merge with a Word 2007 document and an Excel 2007 Macro-Enabled Worksheet (*.xlsm) (using VBA to create statements based on information being reported). A couple of fields can either be a null/blank value or a numeric value. The problem I'm having is that the null values are coming up as zeroes. In excel, I'm pulling data from 5 different spreadsheets into a single, output worksheet, using the following equation:
This same equation on some fields works, but on others doesn't.
Code:
=IF(VLOOKUP(C166,Scorecard!B:H,7,FALSE)="","",VLOOKUP(C166,Scorecard!B:H,7,FALSE))
This same equation on some fields works, but on others doesn't.