Recently active
This may be an easy question but,Is there a way to embed a dashboard page to a sharepoint page? or if not a whole dashboard page, just a widget?
Java scrip about counting character works in Question preview. But not Survey Preview.Here is the Java script I am using for counting characters remaining in the multiple question type with text entry box: Qualtrics.SurveyEngine.addOnReady(function() { // Get the text entry box const textEntryBox = this.questionContainer.querySelector('textarea'); // Set the character limit (change this to match your question's limit) const charLimit = 100; // Create a span element to display the countdown const countdownSpan = document.createElement('span'); countdownSpan.style.marginLeft = '10px'; countdownSpan.style.fontSize = '0.9em'; countdownSpan.style.color = '#888'; textEntryBox.parentNode.insertBefore(countdownSpan, textEntryBox.nextSibling); // Function to update the countdown function updateCountdown() { const remainingChars = charLimit - textEntryBox.value.length; let reminderText = ''; // Get the survey language const surve
Hello All, Please let me know if the following can be done in Qualtrics. I have 20 questions. 12 of them are conjoint questions (Multiple choice). The Conjoint Question looks as follows: The first row is for SMS availability, second for color, third for display and last one is price. Suppose a respondent chooses the third choice. Usually the output in Qualtrics would come as : Question#Choice 3 It is possible to get the output as following ? If a straight approach is not available may be JavaScript would be needed. Any help would be appreciated. Thanks
My survey performs appropriately in preview, but the anonymous link skips the first page of consent and goes directly into the survey. I have published the survey, but it does not work with the anonymous link. The first question is the consent and has skip logic built in if the participant does not consent, it will take them to the end of the survey. I cannot figure out why the anonymous link is skipping this portion completely, but the preview works fine. How can I fix this? I need to go live ASAP
Hi.I would like to insert code to validate the values of the UI on the page when the Next button is pressed. Could you please provide some advice?
Hello, I have an embedded data field that has a large text string. The data saves fine, and is correct. When I download my responses though, the string is truncated. How can I prevent this?
What kind of analysis you do for onboarding surveys (we have combined dashboard, week 1, month 1, 3 and 6)? What kind of user friendly widget you include, any specific textIQ library and AI feature.
Hi all - looking for some guidance around adding new transactional fields to the directory via workflows. For context, our team has transitioned from import automations to workflows. The workflow is triggered daily at a specific time, extracts data from SFTP, adds the transaction to the directory, and then distributes a survey to the transaction. The challenge that we are facing is that it is no longer simple to add new fields to the transaction. Historically, we were able to map a new template to the import automation and add the corresponding fields into the survey flow. It seems that now we need to map this 3 times… once in the SFTP import template, once by adding a new field in the directory, and once on the step to add the transaction to the directory.To add the field to the directory, I have to select a contact and assign a value. I cannot leave the value field blank, otherwise I see this error in the transaction step of the workflow. ({Translation not found: INCONSISTENT_DESTINA
Hi,I’ve tried to add a “comparison” to the gauge widgets in CX Dashboards.I would like to show the last 3 rolling month satisfaction score and show comparison the previous 3 month roll satisfaction score. and for this to be keep updating each month.Am I right to say this is not possible? I don’t think I can use benchmark as I believe it only works on a static value. And in my case this value will be changing each month.Any idea of how to show this comparison in a gauge widget in CX?Thanks!
Hi,I am trying to create a number of Yes / No radio buttons using javascript based on external data reference. My code is below, For some reason I just cannot get the Radio Buttons to display, It seems to be something to do with stylesheets. How do it Fix this? Qualtrics.SurveyEngine.addOnReady(function(){ /*Place your JavaScript here to run when the page is fully displayed*/ var dynamicChoices = "${e://Field/ExternalDataReference}"; var optionsArray = dynamicChoices.split(';'); var questionId = this.questionId; var questionContainer = this.getQuestionContainer(); // Find the multiple choice options container var optionsContainer = this.questionContainer.querySelector('.ChoiceStructure'); // Clear existing options optionsContainer.innerHTML = '';// Dynamically create and append new options for (var i = 0; i < optionsArray.length; i++) { // Create a container for the option var option = document.createElement('div'); option.class
We are trying to avoid saving SONA ID in our datafiles as this is identifiable information. To set up SONA autocrediting, we are following the steps here:https://www.sona-systems.com/help/qualtrics/ Basically it involves sending the ID with the URL to Qualtrics, saving the ID as embedded variable and then piping that back to SONA with the completion code (the participant then automatically receives credit in the SONA system). However, is there a way to pass the ID to Qualtrics and have it piped back without saving it in the Qualtrics data file? Thank you
I’m pretty new to XM Discover. I did obtain the certification but it’s been many months since I’ve been in the tool since then. I’m currently creating a bar chart and have applied a custom color to the bars in the chart -- however, when the bar color applies, it also applies to the Axis labels. Considering the custom color needs to be yellow - I’d prefer to have the Axis labels in black, but cannot find a means to update the axis labels separately from the bar color. Can anyone point me in the right direction? Thanks!