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
- Customer Resources
- 65.1K Get Help
- 444 Global Discussions
- 142 Industry Talk
- 472 Announcements
- 5K Ideas & Feature Requests
- 83 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 489 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!