If this then that...
I am simply trying to create a formula that IF the job code is this, then it auto populates the corresponding Job Title into another cell. Is there a way to do this?
Best Answer
-
This would be a basic If statement.
Assuming you want the job code of SUP to display Supervisor in the Job Title column, you would write the following in the Job Title Column:
=if([Job Code]@row = "SUP, "Supervisor"," ")
If you have a few different job codes you are working with, you would need a Nested If function. Such as:
=IF([job code]@row = "SUP", "Supervisor", IF([job code]@row = "Man", "Manager", IF([job code]@row = "DIR", "Director", " ")))
Answers
-
This would be a basic If statement.
Assuming you want the job code of SUP to display Supervisor in the Job Title column, you would write the following in the Job Title Column:
=if([Job Code]@row = "SUP, "Supervisor"," ")
If you have a few different job codes you are working with, you would need a Nested If function. Such as:
=IF([job code]@row = "SUP", "Supervisor", IF([job code]@row = "Man", "Manager", IF([job code]@row = "DIR", "Director", " ")))
-
Thank you! This worked!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.1K Get Help
- 348 Global Discussions
- 199 Industry Talk
- 427 Announcements
- 4.4K Ideas & Feature Requests
- 133 Brandfolder
- 127 Just for fun
- 127 Community Job Board
- 455 Show & Tell
- 28 Member Spotlight
- 1 SmartStories
- 282 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!