So I have a field that is looking up a date value from another sheet. (Index/Match)
I am trying to get a date that is 6 months prior to that date in a different field.
I am using a simple "if the affiliation date is blank, return blank"
My formula is below.
=IF(ISBLANK([Affiliation Date]@row), "", DATE(YEAR([Affiliation Date]@row), MONTH([Affiliation Date]@row) - 6, DAY([Affiliation Date]@row)))
I keep getting a "INVALID VALUE" error on the majority of my cells (but not all cells).
Any help would be greatly appreicated.