I am getting an #UNPARSEABLE error in the below formula. The formula is to return "See Total Time to Close Column" if the Total Time To Close column is not blank, otherwise, perform the calculations. The calculation formula works correctly without IF(NOT(ISBLANK . . . part of the formula. (i.e., IF(NETDAYS([FAA Received
Date]2, TODAY()) > 365, ROUNDDOWN(NETDAYS([FAA Received Date]2, TODAY()) / 365, 1) + " Years", NETDAYS([FAA Received Date]2, TODAY()) + " Days"). I have tripled checked all spellings. I can only assume it is a parenthesis issue, but they all seem to be correct.
=IF(NOT(ISBLANK([Total Time To Close]2)), "See Total Time to Close Column", IF(NETDAYS([FAA Received Date]2, TODAY()) > 365, ROUNDDOWN(NETDAYS([FAA Received Date]2, TODAY()) / 365, 1) + " Years", NETDAYS([FAA Received Date]2, TODAY()) + " Days"))