I have a sheet with a form which allows a user to enter a room and row number along with the collected data. I then wanted to average out the current weeks collected data but still have the historical data from previous collections. To isolate the current weeks data for my AVG(COLLECT formula I added a couple of helper columns.
Column Current Week
=Weeknumber(Today())
Column Week
=Weeknumber([Submission Time]@row)
Column Submission Time - this is a created date column for when the form was submitted
Current week Helper
=If([Current Week]@row >=Week@row, 1, 0)
I wanted the helper column to show 1 if that data is from the current week, but the issue is when I manually change the value of the Week Column to something lower than the current week value it does not update the helper column. Does anyone know how to fix that?
I have tried to reopen and refresh the sheet but it still does not update.