Skip to content Skip to sidebar Skip to footer

How To Loop Over Hundreds Of Images In Qulatrics - Help Needed To Implement Code

I would like to use Qualtrics to get ratings for over 700 images (i.e., participants will have to indicate how negative or positive they find them). The question will be exactly th

Solution 1:

You didn't say where the images are stored. If they are stored in Qualtrics this is fairly easy:

  1. Get a list of photo urls or image ids (If photos are stored in your Qualtrics library, go Account Setting/Qualtrics IDs. Then click on the library where the photos are stored. Copy the image ids and paste them in a spreadsheet.)
  2. Edit your spreadsheet as needed.
  3. Copy and paste your urls or image ids from the spreadsheet into the loop & merge setup. This can be done all at one time.
  4. Create your question in the loop & merge block. Include an html <img> tag in the appropriate place. You'll pipe your url or image id into the appropriate place in the src attribute. For example, if you are using image ids with a name in field 1 and the image id in field 2, the html might look like:

    <img src="https://survey.qualtrics.com/ControlPanel/Graphic.php?IM=${lm://Field/2}" alt="${lm://Field/1}" border="0">


Post a Comment for "How To Loop Over Hundreds Of Images In Qulatrics - Help Needed To Implement Code"