Hello! I need to develop a formula to count the number of opportunities awarded this week and then compare to previous weeks. I have a helper column on my source sheet to list the week number for the awarded date. For Awarded Opportunities This Week the following formula is working:
=COUNTIFS({Opportunity Intake study status}, OR(@cell = "Assessment & Validation", @cell = "Needs Assessment & Strategy", @cell = "Development & Production", @cell = "On-Hold", @cell = "Delivered: Pending Revenue", @cell = "Delivered: Complete"), {Opportunity Intake Awarded Week}, =WEEKNUMBER(TODAY()), {Opportunity Intake Awarded Year1}, =YEAR(TODAY()))
Now I can't get the right result for
Awarded Opportunities Previous 5 Weeks
Awarded Opportunities Current 3 Weeks
Awarded Opportunities Current 2 Weeks
I am trying the following for the "previous 5 weeks":
=COUNTIFS({Opportunity Intake study status}, OR(@cell = "Assessment & Validation", @cell = "Needs Assessment & Strategy", @cell = "Development & Production", @cell = "On-Hold", @cell = "Delivered: Pending Revenue", @cell = "Delivered: Complete"), {Opportunity Intake Awarded Week}, <WEEKNUMBER(TODAY()), {Opportunity Intake Awarded Week}, >=WEEKNUMBER(TODAY() - 5), {Opportunity Intake Awarded Year1}, =YEAR(TODAY()))
Any suggestion? Thank you in advance for your help!
Sofi