I have a multi-sheet workbook where all sheets are being pulled into one. I had my equation working like a charm, but when there was a blank cell, it would return 0. I wanted to customize the text returned to a string, so when I added the IF statement to the equation, it returns the string if the cell is blank, but if the cell contains a value that I want it to return, it only returns FALSE...
Here is my example:
=IFERROR(IF(VLOOKUP(A1,’Sheet 1’!2:200,2,FALSE)=0,"No Value"),IFERROR(IF(VLOOKUP(A1,’Sheet 2’!2:200,2,FALSE)=0,"No Value"), “N/A”))