Google Sheet Weekly Report Troubleshooting - Final Solution

Summary


Here’s what was done to address everything in Task 2:

  1. Corrected the data cells referenced in each formula in the Executive Overview sheet so that they point to the relevant column in the Raw Data Combined sheet.

๐Ÿ‘‰ Subtask 1 Solution

  1. Changed the date cell referenced in each formula (from A to B) in the Executive Overview table to match the date column B.

๐Ÿ‘‰ Subtask 2 Solution

  1. Updated the dates in Column B so that they are properly formatted with either - or /.

๐Ÿ‘‰ Subtask 3 Solution

  1. Visually verified the values in the Weekly section in the Executive Overview match the Weekly Overview sheet. Corrected 9/2/2020 to 9/5/2020 and fixed formatting on Revenue and ROAS columns to match.

๐Ÿ‘‰ Subtask 4 Solution

  1. Add the two missing rows for 10/31/2020 and 9/12/2020 to the Executive Overview. Alternatively, add two rows to the bottom of the table.

๐Ÿ‘‰ Subtask 5 Solution

  1. Bonus. Allowed dates to include . by inserting SUBSTITUTE or REGEXREPLACE in the SUMIFS() formula to replace . in dates with / during execution.

๐Ÿ‘‰ Subtask 6 Solution

Putting it all together, the final updated formula looks like this:

=SUMIFS('Raw Data Combined'!D:D,'Raw Data Combined'!$A:$A,">="&REGEXREPLACE(TO_TEXT($B14), "\D+", "/")-6,'Raw Data Combined'!$A:$A,"<="&REGEXREPLACE(TO_TEXT($B14), "\D+", "/"), 'Raw Data Combined'!$I:$I,"<>#N/A")

And here we see the final Sheet:

Click here to view the full sheet

For reference, included below is the original Task 2 information:

Click to expand

Task 2


Prompt

A fellow account manager has been working on their weekly report for a client, but canโ€™t quite seem to get it working. The individual sheets work, but the Weekly section in the Executive Overview isnโ€™t pulling in any data, even though they copied the formulas over and dragged them across. It looks like the formulas in range B14 to N27 arenโ€™t reading properly, but the dates in Column B look different too. Once youโ€™re able to figure that out, the data needs to match the Weekly sheet, and there should be 15 weeks shown. Please help, and explain your findings.

Bonus

They really want to use periods to show the dates, maybe thereโ€™s a way to make it work?

Here is their report (File > Make A Copy): https://docs.google.com/spreadsheets/d/1nAediTxPONsJwQoWwFwjqSadE51r0LT3_Wv_GGCLo7c/ edit


NEXT
๐Ÿ‘‰ Jump to Task 3

Previous