So I hope that I can explain this clearly. So I am trying to nest three formulas, IFERROR, VLOOKUP, ISBLANK. The goal that I am trying to achieve is use the vlookup function along with the IFERROR to not get N/A where there is nothing for the function to lookup. That has been achieved but, if the iferror vlookup pulls a blank cell, which is why I am trying to use the isblank function, I want it to state “NO INFO” or whatever text I choose. The way my formula is written without the isblank works but returns a 0 if the mainentry cell is blank.
=iferror(vlooku(t6,a3:h10000,7,false),””)&” / “ &iferror(vlookup(a3:h10000,8,false),””)
Where I thought I could put the ISBLANK for nesting
=iferror(vlooku(t6,a3:h10000,7,false),isblank(“0”))&” / “ &iferror(vlookup(a3:h10000,8,false),isblank(“0”))
Need guidance on making this goal reality. Please help
=iferror(vlooku(t6,a3:h10000,7,false),””)&” / “ &iferror(vlookup(a3:h10000,8,false),””)
Where I thought I could put the ISBLANK for nesting
=iferror(vlooku(t6,a3:h10000,7,false),isblank(“0”))&” / “ &iferror(vlookup(a3:h10000,8,false),isblank(“0”))
Need guidance on making this goal reality. Please help
Last edited: