F
Flats
Hi all,
I'm trying to develop a vlookup formula that returns a value if one
exists but does NOT return either #N/A or "0", I would like the field
left blank if there is no value.
I can do either/or but not combine both requirements.
i.e
=IF(ISNA(VLOOKUP($A5,'Game 1'!$A$4:$N$11,12,0)),"",VLOOKUP($A5,'Game
1'!$A$4:$N$11,12,0))
or
=IF(LEN(VLOOKUP($A5,'Game 1'!$A$4:$N$11,12,0))=0,"",(VLOOKUP($A5,'Game
1'!$A$4:$N$11,12,0)))
I though combining them would do the trick ie:
=IF(ISNA(VLOOKUP($A5,'Game
1'!$A$4:$N$11,12,0)),"",LEN(VLOOKUP($A5,'Game
1'!$A$4:$N$11,12,0))=0)))
or something similar but no joy, instead it returns TRUE or FALSE
Can somebody please help.
I'm trying to develop a vlookup formula that returns a value if one
exists but does NOT return either #N/A or "0", I would like the field
left blank if there is no value.
I can do either/or but not combine both requirements.
i.e
=IF(ISNA(VLOOKUP($A5,'Game 1'!$A$4:$N$11,12,0)),"",VLOOKUP($A5,'Game
1'!$A$4:$N$11,12,0))
or
=IF(LEN(VLOOKUP($A5,'Game 1'!$A$4:$N$11,12,0))=0,"",(VLOOKUP($A5,'Game
1'!$A$4:$N$11,12,0)))
I though combining them would do the trick ie:
=IF(ISNA(VLOOKUP($A5,'Game
1'!$A$4:$N$11,12,0)),"",LEN(VLOOKUP($A5,'Game
1'!$A$4:$N$11,12,0))=0)))
or something similar but no joy, instead it returns TRUE or FALSE
Can somebody please help.