Name different weeks by IF(AND Formula and WEEKNUMBER.
Hello! I need some help to make my simple formula more efective!
What I want is according to my [Start Date] know the week number, and depending on that number have another column saying if it's the current week, past 1 week, past 2 weeks, and past 3 weeks.
So my formula is this one
=IF([Week Number]@row = WEEKNUMBER(TODAY()), "Current Week", IF([Week Number]@row = WEEKNUMBER(TODAY()) - 1, "Past 1 Week", IF([Week Number]@row = WEEKNUMBER(TODAY()) - 2, "Past 2 Weeks", IF([Week Number]@row = WEEKNUMBER(TODAY()) - 3, "Past 3 Weeks", ""))))
And it works!
But I have 2 problems,
1) I'm using a helper column with the week number of my [Start Date] and I would like to avoid it if possible.
2) The formula works, but it won't show past 2, or 3 weeks because it was 2022 so it says that it's week 52, maybe I need to add the year in the formula but not sure how that works.
Can somebody please help me, and explain to me how to make it work and if I need to add the year for future formulas?
Thank you!!
Answers
-
I would suggest working in days alongside the week numbers.
Basically you want to compare the week number to the week number for 7 days prior to today. This will take care of any year overlap without having to actually build in anything for the years.
=IF([Week Number]@row = WEEKNUMBER(TODAY()), "Current Week", IF([Week Number]@row = WEEKNUMBER(TODAY(-7)), "Past 1 Week", IF([Week Number]@row = WEEKNUMBER(TODAY(-14)), "Past 2 Weeks", IF([Week Number]@row = WEEKNUMBER(TODAY(-21)), "Past 3 Weeks", ""))))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 140 Industry Talk
- 472 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!