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