Need a Formula for New Hires Starting this Week
Hi! I am building an onboarding dashboard and I need to display a metric for "New Hires Starting this Week". Therefore, I need a formula that returns a count of new hires who have started within the current span of Monday-Friday at any given time. I am trying to display this as a sheet summary field. Is this possible? The relevant field is the Final Start Date column. (formatted as Mon 01/01/2001)
Best Answer
-
I think I skipped over an issue in my first try, this one should work better:
=COUNTIFS([Final Start Date]:[Final Start Date], ISDATE(@cell), [Final Start Date]:[Final Start Date], WEEKNUMBER(@cell) = WEEKNUMBER(TODAY()))
Answers
-
=COUNTIFS([Final Start Date]:[Final Start Date],">="&CurrentWeekStart, [Final Start Date]:[Final Start Date], "<"&CurrentWeekStart+7)
My first attempt based on research, but I am in a little over my head.
-
Try this:
=IFERROR(COUNTIFS([Final Start Date]:[Final Start Date], WEEKNUMBER(@cell) = WEEKNUMBER(TODAY())), "")
-
I think I skipped over an issue in my first try, this one should work better:
=COUNTIFS([Final Start Date]:[Final Start Date], ISDATE(@cell), [Final Start Date]:[Final Start Date], WEEKNUMBER(@cell) = WEEKNUMBER(TODAY()))
-
Thank you!!!!!! This works perfectly.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.6K Get Help
- 433 Global Discussions
- 136 Industry Talk
- 465 Announcements
- 4.9K Ideas & Feature Requests
- 143 Brandfolder
- 147 Just for fun
- 63 Community Job Board
- 466 Show & Tell
- 32 Member Spotlight
- 2 SmartStories
- 298 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!