Formula to determine is something is due this week

Hi all -
I would like to calculate if something is due this week based on a target date in another cell.
I have tried this formula: =IF((TODAY() - [Week Of]1) - 7 > 0, "no", "yes")
This formula pull in a 'yes' for anything that is due in the next 7 days, which is not quite what I'm looking for.
Is it possible to determine if something is due just in the current week?
Thanks!
Andrea
Answers
-
Yes. You could incorporate a WEEKNUMBER function.
=IF(WEEKNUMBER([Week Of]@row) = WEEKNUMBER(TODAY()), "yes", "no")
-
This is perfect. Thanks, Paul!
-
I am trying to get my parent row 'On Site Helper" box to check if any children have activity in the current week. Right now I have a formula to check my "on site helper" box
=IF(AND(Start@row <= TODAY(), Finish@row >= TODAY(), COUNT(PARENT([Scope of Work]@row)) > 0), 1, IF(COUNTIF(CHILDREN(), 1) >= 1, 1))
If i sue this same formula in the parent row then is is always checked even when I have a gap in site activity.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.8K Get Help
- 474 Global Discussions
- 203 Use Cases
- 515 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 82 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!