I would like the IF statement to return a specified value if based upon date ranges. For example, if a date falls within a range:
09/01/23 - 11/30/23 should return the value "Q1"
12/01/23 - 02/29/24 should return the value "Q2"
03/01/24 - 05/31/24 should return the value "Q3"
06/01/24 - 08/31/24 should return the value "Q4"
This is what I have so far: =IF([End Date]@row >= DATE(2023, 9, 1), "Q1")
Any assistance you can provide would be greatly appreciated!