I have been requested to create columns that capture the weeks within a Quarter (start - end of the quarter), the Quarter to date (QTD), and year to date (YTD) based upon my "Created" column.
The ask from their output in excel:
This is what I have started to create:
Quarter Start Date formula:
=DATE(YEAR(Created@row, FLOOR(MONTH(Created@row, -1, 3) + 1, 1)))
Error: #INCORRECT ARGUMENT
Quarter End Date formula:
=IF(MONTH(TODAY()) <= 3, DATE(YEAR(TODAY()), 3, 31), IF(MONTH(TODAY()) <= 6, DATE(YEAR(TODAY()), 6, 30), IF(MONTH(TODAY()) <= 6, DATE(YEAR(TODAY()), 9, 30), IF(MONTH(TODAY()) <= 6, DATE(YEAR(TODAY()), 12, 31)))))
Blank cell
Looking to see how to capture the weeks in a quarter, last day of the quarter for End of Quarter data. 🤯