Feb 21 2024 03:48 AM
Hi.
I am trying to write a formulae which will return me "yes" if a date in column a is between 6 months before or after another date in column b. Any thoughts on how to do this?
Thanks,
Hannah
Feb 21 2024 03:58 AM
Solution=IF((A1>=EDATE(B1,-6))*(A1<=EDATE(B1,6)),"yes","")
Perhaps this formula returns the intended result.
Feb 21 2024 03:58 AM
Solution=IF((A1>=EDATE(B1,-6))*(A1<=EDATE(B1,6)),"yes","")
Perhaps this formula returns the intended result.