Hello,
I have columns for each quarter of the year (Q1, Q2, etc.) in Checkbox format. I am trying to create a formula where the Checkbox is automatically checked if the Start Date and/or End Date fall within the quarter.
For Q1, I only need to look at the start date because all of the Start Dates are in 2022.
=IF(AND([Start Date]@row >= DATE(2022, 1, 1), [Start Date]@row <= DATE(2022, 3, 31)), true, false)
I run into trouble for the Q2 where the project may have started in Q1 but will run into Q2, so I need to consider the End Date as well. I tried the following as well as other variations but I get the #incorrect argument error.
=IF((AND([Start Date]@row >= DATE(2022, 4, 1), [Start Date]@row <= DATE(2022, 6, 30))), true, IF(AND([End Date]@row >= DATE(2022, 4, 1), [End Date]@row <= DATE(2022, 6, 30))), true, false)
Please let me know if I need more or less parenthesis, or if I need an OR thrown in there. Thank you in advance.