I need help getting a formula to work for figuring out how many months are overlapping for project with a start and end date within a fiscal year start and end date. Here is the formula that I am attempting to use. Please help!!!
=IF(AND([End Date Planned]@row >= [FY25Start Date]@row, [Start Date Planned]@row <=[FY25 End Date]@row), DATEDIF(MAX([Start Date Planned]@row, [FY25Start Date]@row, MIN([End Date Planned]@row, [FY25End Date]@row, "M") 0)))
I'm pretty sure that it has problems with the parenthesis.