Tracking that updates are received from employees
I have created a sheet for employees to provide numeric updates at 10AM, 2PM, and EOD.
On a separate sheet, I am trying to create an automatic checklist to ensure all updates are received and that will send reminders if their update is missing. My checklist looks like this:
I have used this formula on a checklist for just checking that the employee's name is present on the update and that works great.
=IF(COUNTIFS({Employee}, Employee@row) 0,1)
However, I cannot figure out how to have it check both the name and the column. Any suggestions?
Best Answer
-
You would simply need another range/criteria set to evaluate if there is an entry (for example) for that person where the 10AM column is not blank.
=IF(COUNTIFS({Employee}, Employee@row, {10AM Column}, @cell <> "") = 0,1)
Answers
-
You would simply need another range/criteria set to evaluate if there is an entry (for example) for that person where the 10AM column is not blank.
=IF(COUNTIFS({Employee}, Employee@row, {10AM Column}, @cell <> "") = 0,1)
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!