Hello,
I have determined a way to identify the day of the week via a helper column formula with additional helper columns for the current week. What I want is a way to differentiate the current week from the following/next week. This is strictly Monday - Friday Business days. I will post below my current situation. Please let me know what I can do to separate these from each other. Thank you all!
Day of the week Formula: =IF(WEEKDAY([Start Date(訪問開始日)]@row) = 2, "Monday", IF(WEEKDAY([Start Date(訪問開始日)]@row) = 3, "Tuesday", IF(WEEKDAY([Start Date(訪問開始日)]@row) = 4, "Wednesday", IF(WEEKDAY([Start Date(訪問開始日)]@row) = 5, "Thursday", IF(WEEKDAY([Start Date(訪問開始日)]@row) = 6, "Friday")))))
Current Week: =IF(WEEKNUMBER([Start Date(訪問開始日)]@row) = WEEKNUMBER(TODAY()), 1)
[FORMULA IN QUESTION]
Following Week: =IF(OR(WEEKNUMBER([Start Date(訪問開始日)]@row) = WEEKNUMBER(TODAY()), WEEKNUMBER([Start Date(訪問開始日)]@row) = WEEKNUMBER(TODAY()) + 1), 1)