Hello,
I am looking to project an automated graph that shows the past 6 months in a dashboard. I have a sheet that has a date column with information from the past two years. Also, three different descriptions "Expedited", "Redo", and "Expedited and Redo". I used this formula to get the date from the past 6 months as a helper row:
=IF(AND(ISDATE(Date@row), Date@row >= DATE(YEAR(TODAY()) - IF(MONTH(TODAY()) <= 6, 1, 0), IF(MONTH(TODAY()) <= 6, MONTH(TODAY()) + 6, MONTH(TODAY()) - 6), DAY(TODAY()))), Date@row, "")
How can I create one graph (stacked bars preferably) that counts the number of "Expedited", "Redo", and "Expedited and Redo" data for the past 6 months? and that updates automatically?
I can have multiple graphs for each description.