Hey All!

So, I have a formula to copy a cell from on sheet to another:

=IF(ISBLANK('Participation Log'!$H166),"",'Participation Log'!$H166)

It works exactly as intended. The cell it is copying is a date formatted like 1/2/20. The formula in the next cell checks to see if there is a date & determine if that date greater than TODAY() ...and if so, it counts out 90 days and shows that date (or leaves blank if there was no date). It works fine in the fact that if there is no date in the first cell, it leaves the new cell blank. It also works fine if the the date int he cell is greater than TODAY(), but if it's not, it returns FALSE instead of leaving it blank. The formula I'm using is:

=IF(ISNUMBER(VALUE($G166)),IF($G166+90>TODAY(),$G166+90),"")

Basically, everything is working as intended, but I need it to not show FALSE and instead be blank. Any tips?

Thanks