Hi,
I have a survey to evaluate a Training session. We distribute it via QR codes, and within the survey url in the QR code, there is a url parameter that indicates &Training_ID=1
So we have a couple dozen of different training ID’s.
Each training has a name, location, type, etc.
I do want to use the training’s name/location/type in my dashboards. i.e. what is the average satisfaction of the trainings in location B.
I don’t want to add every single extra field into my QR code url, that makes the QR too dense. I only want the training ID in my url.
What is the most efficient way to be able to use this additional data about the trainings?
My current method is to add a Branch per training id.
So branch 1: If Training_ID = 1, then Name = x and Location = A and type = z.
Branch 2: If Training_ID = 2, then Name = y and location = B and type = y
and so forth
but this is starting to be a whole lot of branches as our number of trainings is growing.
I also tried to have an additional project, an imported data project, with the list of all the training id’s and their name/location/type,
but then I can’t seem to correctly add that imported data project into the dashboars, so that I can calculate the average satisfaction of the trainings in location B. As the imported data project is an additional datasource, all the entries are handled as separate “answers” and not as additional information on the survey data of the training survey.
So, if anyone has any other ideas on how I could acchieve this use case? Or are the branches I built the only way? I was also thinking about making a webservice call within the survey flow to get that additional data into the survey from out of that other imported data survey, but I’m not sure if that will work, as for the “get survey response” api call I need the response id, which is also not the same as the training_id …