I want to use COUNTIFS to summarize data to a sheet from three areas of another sheet.
The formula below is in a sheet title: TblInstructors
The formula below is in a the above sheet title: TblInstructors (in each of the COUNT columns with different " ", @cell names, of course):
=COUNTIFS({Archive Teaches Classes 1}, AHAInstructorID@row, {ArchiveClasses Range 2}, CONTAINS("ACLS", @cell))
The other sheet being referenced is (in part):
The formula is not 'complete' as it is currently not capturing the three options for COUNTING instructor activity. The instructor may be the principle instructor (thus in the first column above, or an Assisting Instructor, or a second Assisting Instructor.
Hoping my description is enough, but not sure. Is anyone able to help?
Thank you - 'Berta W.
Answers
-
Your first formula counts where the instructor ID is in {Archive Teaches Classes 1}. You can add multiple COUNTIFS together in one cell to get the total count:
=COUNTIFS({Archive Teaches Classes 1}, AHAInstructorID@row, {ArchiveClasses Range 2}, CONTAINS("ACLS", @cell)) + COUNTIFS({Archive Teaches Classes 2}, AHAInstructorID@row, {ArchiveClasses Range 2}, CONTAINS("ACLS", @cell)) + COUNTIFS({Archive Teaches Classes 3}, AHAInstructorID@row, {ArchiveClasses Range 2}, CONTAINS("ACLS", @cell))
where {Archive Teaches Classes 2} references the AssistInstructor1ID column and {Archive Teaches Classes 3} references the AssistInstructor2ID column.
Regards,
Jeff Reisman
Link: Smartsheet Functions Help Pages Link: Smartsheet Formula Error Messages
If my answer helped solve your issue, please mark it as accepted so that other users can find it later. Thanks!
-
Alternatively, if you move your instructorID columns next to each other, you could create a reference to all three columns as one range. If you were doing the count on the same sheet, it would look like this:
=COUNTIFS([AHA Instructor ID]:[AssistInstructor2ID], AHAInstructorID@row)
Here it is working on my test sheet:
Regards,
Jeff Reisman
Link: Smartsheet Functions Help Pages Link: Smartsheet Formula Error Messages
If my answer helped solve your issue, please mark it as accepted so that other users can find it later. Thanks!
-
In the formula you've created, what is referenced by (ArchiveClasses Range 2)?
-
That came from YOUR formula. I assume you know what it is referencing. I figured it was the start of a class name or class type or something.
Regards,
Jeff Reisman
Link: Smartsheet Functions Help Pages Link: Smartsheet Formula Error Messages
If my answer helped solve your issue, please mark it as accepted so that other users can find it later. Thanks!
-
Oh my, Jeff I do not have a good grasp on the references used. I am thinking the first Range is the AHA Instructor ID column in the Archive Teaches Classes sheet; the second Range is the AssistInstructo1ID column in the Archive Teaches Classes sheet; the third Range is the AssistInstructor2ID column in the Archive Teaches Classes sheet. Does the COUNTIFS formula require two Ranges be designated?
=COUNTIFS({Archive Teaches Classes Range 1}, AHAInstructorID@row, CONTAINS("ACLS", @cell))+COUNTIFS({Archive Teaches Classes Range2},AHAInstructorID@row), CONTAINS("ACLS",@cell))+COUNTIFS({ArchiveTeachesClasses Range 3}, AHAInstructorID@row, CONTAINS("ACLS",@cell))
-
You can use COUNTIFS with just one range and one criteria. Since you are using this on your metrics sheet to count the number of instances where that row's instructor ID was listed for a class (in any of the three instructorID columns) you really don't need the CONTAINS("ACLS", @cell))
=COUNTIFS({Archive Teaches Classes 1}, AHAInstructorID@row) + COUNTIFS({Archive Teaches Classes 2}, AHAInstructorID@row) + COUNTIFS({Archive Teaches Classes 3}, AHAInstructorID@row)
As you create your second and third COUNTIFS, just follow Smartsheet's prompts to create the references to the AssistInstructor1ID and AssistInstructor2ID columns.
Regards,
Jeff Reisman
Link: Smartsheet Functions Help Pages Link: Smartsheet Formula Error Messages
If my answer helped solve your issue, please mark it as accepted so that other users can find it later. Thanks!
-
I will try again to enter the formula in my SmartSheet. I got a return ERORR so I apparently have some syntax wrong. The reason to use the CONTAIN("ACLS",@cell) is to be able to copy that formula to three other columns in the TblInstructor Sheet when the instructor type CONTAINS either BLS, or HSFA, or PALS. Thank you
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 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!