The formula that I am using is trying to pull the percentage of work done on a specific project within a certain week. I am trying to capture a "This Week" and "Last Week"
The formula for "This Week" IS WORKING and it is as follows:
=SUMIFS({Tracker Range 5}, {Tracker Range 4}, WEEKNUMBER(TODAY()), {Tracker Range 6}, [Primary Column]@row)
Where "Tracker Range 5" is the column of percentages, "Tracker Range 4" is the column of week numbers, and "Tracker Range 3" is the column of project names (the primary column on my metrics sheet is the project names, hence the[Primary Column]@row)
The formula for "Last Week" IS NOT WORKING and it is as follows:
=SUMIFS({Tracker Range 5}, {Tracker Range 4}, WEEKNUMBER(TODAY()-1), {Tracker Range 6}, [Primary Column]@row)
The only difference in this formula is the "-1" within the week number formula. Before it is mentioned, the formula =WEEKNUMBER(TODAY()-1) is working in a separate cell and pulls up the number that I am looking for (so does =WEEKNUMBER(TODAY())-1 and =WEEKNUMBER(TODAY(-7)) ).
Each way I have thought to configure this formula has not worked and logically it appears to make sense. Please let me know what you all think, willing to try anything. I have had a hard time looking for a similar formula that can be used in the same way with cycling data.