I have the following formula, which works fine. It returns either the date, or the word current if the date is <=5 from today.

IF(((TODAY())-(VLOOKUP($A$3:$A$126,Cons!$C$3:$F$8770,4,FALSE)))<=5,"Current",(VLOOKUP($A$3:$A$126,Cons!$C$3:$F$8770,4,FALSE)))

My issue is that if there is no date for the selection in my vlookup, it returns #n/a. I would like to get rid of that.

I have added the if(isna(vlookup...), however, then it returns either the word True to False.

I have also tried =if(isna(IF(((TODAY())-(VLOOKUP($A$3:$A$126,Cons!$C$3:$F$8770,4,FALSE)))<=5,"Current",(VLOOKUP($A$3:$A$126,Cons!$C$3:$F$8770,4,FALSE))), with no results.

Any assistance would be greatly appreciated.