Hello,
I am having an issue when trying to return values like "FY22" based on a date range. What I need is that is the date is between FY 06/01/2021 and 05/31/2022 for it to return FY22, if not then x. I get #Invalid Operation, and I've tried many different ways. This is what I have now:
=IF(AND([FY Eligible Date]@row >= DATE(2021, 6, 1), [FY Eligible Date]@row <= DATE(2022, 5, 31)), "FY22", "x")
