Join row data formula
I have two sheets for a traning evaluation form. They both have a common column, TrainingID. Based on that column I want to bring in data from one sheet to another. Example: For all rows that have BLS05 as a Training ID, I want the data columns from Facilitator Information to merge with the Evaluation sheet
Facilitator Information will have the training information such as Trainer, Title, Date, Training ID and the Evaluation sheet will have all of the responses to the questions ask and the same training ID.
My attempt to create an Index Match is this: #UNPARSEABLE error
=INDEX({Facilitator Data Form Range 2}, MATCH({Facilitator Data Form Range 1}, ([TrainingID@row])))
The Facilitator date range are the columns I want to merge into the Evaluation sheet that has the responses. Each response will have a TrainID - common per training. So there could be 25 rows with the same TrainIDs of BLS05.
Am I on the right path? How do I fix the UNPARSEABLE error?
Answers
-
Hi @rachmavis
I sometimes make mistakes as well, but you have to put search_value first in the MATCH function.
=INDEX({Facilitator Data Range}, MATCH([TrainingID]@row, {Facilitator TrainingID Range}, 0))
Syntax
MATCH(search_value, range, [search_type])
search_value
— The value to search for.range
— The cell range (lookup table) to be searched.search_type
—[optional] The default is 1. The manner in which to search, depending on whether the range is sorted ascending (1), not sorted (0), or sorted descending (-1).
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!