Questions tagged [qualtrics]

Qualtrics is an enterprise-level commercial web-services provider specializing in online marketing, online surveys, and related metrics. For non programming related questions, please utilize the Qualtrics Community.

The Qualtrics website provides information about the service. Qualtrics offers two Application programming interfaces (APIs):

All non development related questions should be directed to the Qualtrics Community site, instead of Stack Overflow.

719 questions
2
votes
2 answers

CSS tooltip background color hidden

Here's my code: /* Tooltip container */ .tip { position: relative; display: inline-block; cursor: help;/*change the cursor symbol to a question mark on mouse over*/ color: inherit;/*inherit text color*/ text-decoration:…
2
votes
2 answers

Qualtrics API - Certain columns change from string to number

I am downloading data from a survey that we did in Qualtrics. I found Python 3 sample code (https://api.qualtrics.com/docs/response-exports) and based my code around it. After successful download I noticed that questions that had provided a list of…
Abram
  • 59
  • 1
  • 12
2
votes
1 answer

R automatically converts dates to string when importing xlsx

I have an excel file with a column of date info. These are the dates that people took a survey, and are formatted like "1/20/2017 2:22:34 PM" as downloaded from Qualtrics. But when I import this file to R using read_excel, each date automatically…
skittlebug
  • 29
  • 1
2
votes
1 answer

Change multiple answer to one

I made the mistake of leaving the "What is your gender" question as a multiple choice in Qualtrics instead of a "pick one". I exported the data to SPSS and this makes me unable to do correlations etc. Is there an easy way to fit the answers given…
2
votes
2 answers

Remove "Next" Button from Qualtrics Page

I am trying in Qualtrics to remove the "Next" button from a single page with several questions with display logic. I can't tell if it is due to display logic, a timer I implemented, or my code for removing the button. I've removed and added each but…
socialscientist
  • 3,759
  • 5
  • 23
  • 58
2
votes
1 answer

Qualtrics: Loop over embedded data fields?

I have a large set of embedded data fields that are called rnd1, rnd2, rnd3 etc. In a certain question block, I stored to each of these a certain value (each a different random number). I also have a Loop and Merge question block, and in each…
Cuenco
  • 63
  • 5
2
votes
2 answers

Using javascript to record reaction time in qualtrics using keypress without advancing

I am new to javascript and learning how to use it within qualtrics. In my survey, I have a question that is set to display for 1500 ms to which respondents must press one of two keys ('S' or 'D') to make their response. What I would like is for…
2
votes
1 answer

Back button after Branch Logic in Qualtrics

I am programming a survey in Qualtrics. Is there any way I can allow for a Back Button after the respondent move to a certain Branch Logic? I have tried to add the JavaScript this.showPreviousButton() in the last question of the block but the button…
2
votes
1 answer

Qualtrics scoring Loop & Merge questions

I'm setting up a simple Qualtrics survey with one question with a Loop & Merge function (in this one block); in Loop & Merge field 1, I've provided the URLs to my media files. The respondents have to select the right answer from two answer options…
Kat
  • 21
  • 2
2
votes
1 answer

Qualtrics: Is there a good way to call these embedded data field?

This is a question on a Qualtrics survey. I have embedded data fields with following names cand_1_name and cand_2_name etc. In repeated questions using Loop and Merge, I want to pipe different fields in each round. For example, in the first round,…
amatsuo_net
  • 2,409
  • 11
  • 20
2
votes
1 answer

Is it possible to save a variable from javascript to the qualtrics dataset?

I am currently working on a qualtrics survey that includes a javascript part. It's basically all set, except I cannot get the response variable from the javascript part to be saved in qualtrics. The variable is a counter of how many times the…
2
votes
1 answer

pipe text from external source (such as csv or excel file)

I want to include 11 columns from external csv file to my survey. On the basis of 11 columns respondent will answer. My question is: can i pipe text from csv file or is there any other way ?
user2293224
  • 2,128
  • 5
  • 28
  • 52
2
votes
1 answer

Deselect a radio button in qualtrics

Is there a way to use the qualtrics javascript api (or, if not, a workaround) to programatically clear all entries made to radio buttons on a page? My usage case is in a matrix table question that "pipes" (actually uses embedded data) values from…
Ty Hayes
  • 178
  • 10
2
votes
1 answer

Qualtrics: In javascript code, how to call a text entry input within a Loop and Merge block

I want to ask if anyone knows, in javascript code, how to refer to a text entry response/input in a Loop and Merge block. I got to know the corresponding format when there is no Loop and Merge from this very useful post Qualtrics: Javascript to…
Felix
  • 23
  • 3
2
votes
1 answer

Show loop count for Qualtrics loop and merge

I have a block with 1 question in a Qualtrics survey that uses the loop and merge function to display 300 trials. I'm looking for a way to give some sense to the participant taking the survey how many trials they've completed or how much longer they…