Formula Counting Courses Required /Taken
All,
Have a smartsheet that shows by student (each row is a student) what course they are required to take. The student updates the date they completed the course via update requests. Based on this smartsheet I am trying to find a formula that will show me when they have completed all courses that they are required. The required course columns are a dropdown with a yes if the need to take the course and blank if they do not. The completion columns are date columns that they update if they have completed the course, and blank if they had not. My thought was to create a formula that would produce a one if the student had a yes in any of the course fields, and a date in any of the completion cells. This would tell us that they had completed all the courses they are required to take.
I have tried unsuccesfully to create anything that will work. Appreciate any suggestions on how we accomplish this.
Thanks!
Art
Comments
-
Hi Art,
Perhaps a solution like the below might do what you need.
As per the first image, each course will have a Course # Complete checkbox column alongside the Course # dropdown and Course # Date columns. The Course # Complete column formula would be:
=IF(AND([Course 1]1 = "Yes", NOT(ISBLANK([Course 1 Date]1))), 1, IF([Course 1]1 = "No", 1, 0))
This will mark the course complete if the Course # dropdown is set to No, or set to Yes with a corresponding date value.
The Requisites Complete checkbox column will have the following formula:
=IF(AND([Course 1 Complete]1 = 1, [Course 2 Complete]1 = 1, [Course 3 Complete]1 = 1), 1, 0)
As per the second image, you can then choose to set conditional formatting to look for a check in the Requisites Complete column and hide the Course # Complete columns to keep things looking neat.
This is only one of many solutions you could use to tackle this problem but should get you started.
-
Thanks Chris! I did what you suggested and I think it will work.
-
My pleasure Art!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 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!