Trying to create a column that tells me which quarter an item will be ready in the future. I can get the Month of the Date cell easy enough but can't figure out how to do a value range that works.
This works =IF(MONTH([End Date]@row) <= 3, "Qtr 1", "Nope") and if the End Date is 1-3 it will say "Qtr 1"
Is there any way to do =IF(MONTH([End Date]@row) = 1-3, "Qtr 1", "Nope")?
Any help is appreciated.