Formula to compare 2 cells and generate the difference on a 3rd cell
Hello all, I am working on a trainings tracker for our project team, and I am a bit stuck. I need to generate a formula that will compare the trainings that are listed in the Required and Completed column cells, and generate the difference on the Outstanding column. Any suggestions would be greatly appreciated!
Answers
-
You may need to add some hidden cells with helper formulas listing each required and if it matched the completed
For example have a column for Required Training A with fomula =if(Contains("Required Training A", [Completed Training]@row, "Complete", "Training Name" and so on for each required training
Then in your outstanding column do =Join and combine all seperate Required Training columns that are not Complete
-
Hi @Braudy ,
A quick solution would be to use a helper column and then sum the total of outstanding trainings in "Outstanding trainings".
"Completed?" field column formula
=IF(Required@row = "", "", IF(FIND(Required@row, JOIN(Completed:Completed, "-")) > 0, "Yes", "No"))
"Outstanding" field cell formula
=COUNTIF([Completed?]:[Completed?], "No")
I would love an elegant solution that did this without the helper column.
Regards,
Neil Egsgard
-
Thanks @Kristin Randall, given that I am tracking 60+ trainings, would I need to create a separate column for each training in order for your suggestion work?
Thanks for your response @Neil Egsgard, is there a way to list all trainings in one cell? I am hoping to find a way to simplify/consolidate as much as possible since I am tracking a lot of trainings for a large team.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.2K Get Help
- 360 Global Discussions
- 198 Industry Talk
- 427 Announcements
- 4.4K Ideas & Feature Requests
- 136 Brandfolder
- 127 Just for fun
- 128 Community Job Board
- 444 Show & Tell
- 28 Member Spotlight
- 1 SmartStories
- 283 Events
- 35 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!