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
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 143 Just for fun
- 58 Community Job Board
- 463 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!