The formula below returns the correct value and removes the #NA but not the null values.
How do I remove “0” null?
=IFERROR(INDEX('[request.xlsm]Notes'!$A:$K,MATCH($C2,'[request.xlsm]Notes'!$B:$B,0),11),"")
The formula below returns the correct value and removes the #NA but not the null values.
How do I remove “0” null?
=IFERROR(INDEX('[request.xlsm]Notes'!$A:$K,MATCH($C2,'[request.xlsm]Notes'!$B:$B,0),11),"")
IFERROR function captures the following errors: #N/A, #VALUE!, #REF!, #DIV/0!, #NUM!, #NAME?, and #NULL!.
A zero is not the same as #NULL!, so IFERROR will not filter that out, and the MATCH function should not be returning #NULL! anyway. If you're seeing zeros, it is likely because you're matching to blanks in the data in your worksheet. If the blanks are expected in the data, and the match response must also be zero, you can nest an IF statement to first evaluate to see if the expression will evaluate to zero.
=IF(INDEX('[request.xlsm]Notes'!$A:$K,MATCH($C2,'[request.xlsm]Notes'!$B:$B,0),11)=0,"",IFERROR(INDEX('[request.xlsm]Notes'!$A:$K,MATCH($C2,'[request.xlsm]Notes'!$B:$B,0),11),""))