I have a formula to show when a given date was in the past and how long ago it was but I need it to display when a date is in the future as well rather than returning #NUM, if possible just saying "Future" would be fine. The formula I'm using is
=LOOKUP(DATEDIF(H2,TODAY(),"m"),{0,3,6,12},{"Current","3 month","6 month","12 months"})
Does it just need another IF statement or an ELSE for future dates?
=LOOKUP(DATEDIF(H2,TODAY(),"m"),{0,3,6,12},{"Current","3 month","6 month","12 months"})
Does it just need another IF statement or an ELSE for future dates?