Hello,
I have three sheets. The first one has four attributes (Let's call it Main):
[ID, Observation Date, Group, Count]
The second one has three (Let's call it Week):
[Week ID, From Date, To Date]
The third has all the Groups listed and the corresponding weeks where the counts will be displayed based on met criteria (Summary sheet).
I'm using SUMIFS to calculate the count if the ID matches my criteria, and the Observation Date falls between Start Date and End Date in the sheet 'Week.'
Here are my two attempts:
=SUMIFS({Count}, {Group}, "Zildj", {Observation Date}, >={From Date}, {Observation Date}, <={To Date})
=SUMIFS({Count}, {Group}, "Zildj", {Observation Date}, AND(>={From Date}, <={To Date})
I am trying to sum data from Main where the count occurred between the two dates from the Week sheet, then display everything in the Summary sheet. I am using the Week sheet to drive the 52-week calendar.
Thank you for your assistance.