Sometimes you want the result of a specific leadform answer to go into one specific field. This guide will show you how to do that.
1. Picking a specific Leadform answer is done while mapping fields into your target module. In this example it's an Excel files field but it can be done in the same way on any other module like some specific field in your Salesforce module.
First, add a map function like this:

2. Put your cursor in front of the semicolon which has been added from step 1 and add the array you wanna go through, in this case it’s [[List of Lead Form Answers]].

3. Now we have to decide what answer we want to search for. For this task it's helpful to have a look at data coming through the Scan2Lead module.
Every answer in a scan is packed into a list of leadform answers, containing multiple keys and values.

4. Now add a list of parameters, separated by semicolons, to tell the map-function 3 things: [[whatFieldIWantToReadInTheEnd]]; [[inWhichKeyDoISearchForAnIdentifier]]; [[whatValueDoesMyKeyNeedToHave]]
So in this example we want to read the value of a key named [[Answer]]. We want to search for the right question in the field [[Question]]. And the value in the field question should be "Produkt" (our example has an german leadform).
Alternatively you could also search in the field [[LeadFormQuestionId]] if you are already sure how your leadform will finally look like.

5. If your search brings up more than one answer the results will be comma-separated automatically. In our example 3 "Produkte" landed in one Excel field.
