I am attempting to populate a cell based on information mastered in another table.
Sheet 1 contains a list of 83 values in a column (Alignment Look up L3) that each correspond to a value in the previous column (Alignment Look up L2).
In Sheet 2, I have to select from the list of 83 values [Business Process (L3)]@row, thus want the previous column to autopopulate so I do not need to look it up each time.
For example, on Sheet 1, Customer Billing corresponds to Revenue Management and Account Planning corresponds to Lead Generation. Thus, on Sheet 2, when I select Customer Billing from a dropdown, I want "Revenue Management" to autopopulate and when I select Account Planning, I want "Lead Generation" to populate. I've tried IF, VLOOKUP with no sucess.
I'm now trying: =INDEX({Alignment Lookup L2}, MATCH("[Business Process (L3)]@row", {Alignment Lookup L3}))
This finally returns a value, but it doesn't match...
Any suggestions on what I'm doing wrong?
Best Answer
-
Your formula was very close! This helped to see how it needed to be laid out:
=INDEX({Column with value to return}, MATCH("Value to match", {Column with value to match in other sheet}, 0))
So you just needed to remove the quotes around the Business Process L3 @row, and add the 0 after the brackets before closing parenthesis.
=INDEX({Alignment Lookup L2}, MATCH([Business Process (L3)]@row, {Alignment Lookup L3}, 0))
Thank you!
Heather
Answers
-
Your formula was very close! This helped to see how it needed to be laid out:
=INDEX({Column with value to return}, MATCH("Value to match", {Column with value to match in other sheet}, 0))
So you just needed to remove the quotes around the Business Process L3 @row, and add the 0 after the brackets before closing parenthesis.
=INDEX({Alignment Lookup L2}, MATCH([Business Process (L3)]@row, {Alignment Lookup L3}, 0))
Thank you!
Heather
-
Really appreciate this - it worked. Thank you!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.8K Get Help
- 376 Global Discussions
- 207 Industry Talk
- 440 Announcements
- 4.5K Ideas & Feature Requests
- 139 Brandfolder
- 129 Just for fun
- 130 Community Job Board
- 449 Show & Tell
- 30 Member Spotlight
- 1 SmartStories
- 284 Events
- 33 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!