Single-Select drop down menu autofilling options
Hi,
I am attempting to select an option from a single-select drop-down that will auto-fill the next column.
I have loaded the formula as a one to one basis, i.e. if 'this person' is selected, populate 'this manager' in the next column. However, I need it to be across multiple employees. So if, this person, this person, or this person is selected, auto-fill this manager. If I attempt to add an 'or' into my formula, I'm getting error messages of UNPARSEABLE or INCORRECT ARGUMENT SET.
Here is my one to one formula:
=IF(HAS(Engineer1, "THIS PERSON"), "THIS MANAGER")
Comments
-
Have you considered doing a vlookup from a new sheet? It might be an easier approach. You'd only have to manage a column of employees, and in column two list their managers. Then do a vlookup from your dropdown cell with a cross-sheet reference to the vlookup table.
- https://help.smartsheet.com/articles/2476606-formulas-reference-data-from-other-sheets
- https://help.smartsheet.com/function/vlookup
If you use an IF formula you are going to have to update that formula everytime a person changes managers, or a new person is added to the team and that would make for a lot of work in your sheet.
-
IF you absolutely want to use a formula, try this method...
IF(OR(Engineer1 = "This person", Engineer1 = "This person", Engineer1 = "This person"), "This manager", IF(OR(Engineer1 = "This person", Engineer1 = "This person", Engineer1 = "This Person"), "This Manager"))
That's going to get unweildy really fast.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.1K Get Help
- 444 Global Discussions
- 140 Industry Talk
- 472 Announcements
- 5K Ideas & Feature Requests
- 83 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 497 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 35 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!