Hi guys, I know this must be possible, I'm just not ordering something correctly...
Formula in question:
{=IF(ISERROR(VLOOKUP(A7,Sheet1!$A$5:$Q$105,15,FALSE)),"",VLOOKUP(A7,Sheet1!$A$5:$Q$105,15,FALSE))}
The above formula is returning values on Sheet2 in column I7:I67. However, the VLOOKUP may only return 15 rows from Sheet 1, therefore leaving an error in the remaining 45 rows. To hide the errors, I am using the ISERROR function. This formula has been working great, until recently. Some of the cells on Sheet1 are now blank, which was not the case previously. Therefore, the above formula is returning zeros now in place of the blank cells. If the cell on Sheet1 is blank, I want it to display as a blank in column I7:I67 on Sheet2, rather than a '0'.
So, in order to do this I have attempted to add the 'ISNA' function to the string above, unsuccessfully, to hide the '0' values. Or, is there an alternative method of hiding both zeros and errors from VLOOKUP? Can any of you help?
I can't use VBscript for this, I just need some tweaking to the above formula.
Formula in question:
{=IF(ISERROR(VLOOKUP(A7,Sheet1!$A$5:$Q$105,15,FALSE)),"",VLOOKUP(A7,Sheet1!$A$5:$Q$105,15,FALSE))}
The above formula is returning values on Sheet2 in column I7:I67. However, the VLOOKUP may only return 15 rows from Sheet 1, therefore leaving an error in the remaining 45 rows. To hide the errors, I am using the ISERROR function. This formula has been working great, until recently. Some of the cells on Sheet1 are now blank, which was not the case previously. Therefore, the above formula is returning zeros now in place of the blank cells. If the cell on Sheet1 is blank, I want it to display as a blank in column I7:I67 on Sheet2, rather than a '0'.
So, in order to do this I have attempted to add the 'ISNA' function to the string above, unsuccessfully, to hide the '0' values. Or, is there an alternative method of hiding both zeros and errors from VLOOKUP? Can any of you help?
I can't use VBscript for this, I just need some tweaking to the above formula.