Hi,
I am using the following formula to populate a checkbox called "this week?" if a fitting is scheduled to take place this week:
=IF(AND(YEAR(TODAY()) = YEAR([EXPECT FITTING DATE]@row), WEEKNUMBER(TODAY()) = WEEKNUMBER([EXPECT FITTING DATE]@row)), 1, 0)
I'm using the checkbox to filter a report so the user can see what fittings are scheduled for the current week.
The formula seems to work fine 99% of the time, but on Monday mornings when the user checks the report around 8:30 or 8:45am EST the report still shows the previous week's fittings. When she tries again a little later it usually updates.
I thought maybe the week number switched over at 9:00am, but that doesn't seem to be the case, because on this day she got the wrong week when she checked at 8:36am, but the correct week when she checked at 8:50am.
Any ideas why this could be happening?
Thanks!!