Removing answers from some questions at the end of a survey | XM Community
Skip to main content

Hi there,

I have this problem of finalizing my survey in a nice way with also a mail send with the answers towards our clients. But I using some questions that are hidden in the survey for the clients but not for us and als not for the script as the answers are needed to mask some questions nicely in the survey. Its a big project so I would like to just change the thing at the end of the survey with a javascript or whatever.

For example
Qid123 - text entry choice, I already made a script that looks at the embedded data.


QID456 - multiple choice, same here

This questions answer are important for the Question masking and it is working. We need to do it like this because Qualtrics doesnt support the in page option with embedded data. 


At the end of our survey, our script for saving the answers also include this question answers QID123 and QID456….. 
 

So I think the most easy solution can be that I will use a script to Erase this 2 questions around the end of the survey and then everything will be working fine. U got some ideas?

@celinoto Try to add this custom CSS to your survey: 

.QID1.ResponseSummaryQuestion, 
.QID2.ResponseSummaryQuestion,
.QID3.ResponseSummaryQuestion {
display: none !important;
}

Just adjust the QIDs to the ones you want to remove… 


@celinoto Try to add this custom CSS to your survey: 

.QID1.ResponseSummaryQuestion, 
.QID2.ResponseSummaryQuestion,
.QID3.ResponseSummaryQuestion {
display: none !important;
}

Just adjust the QIDs to the ones you want to remove… 

 

Thanks for this but I was not talking about the Response summary question unfortunately. I made a script that the questions and answer will be reported in het mail. So Im still looking for something to really erase the answers from those QID.


If you delete them, so they don’t show in the response summary, then you wont see them in your results either, and I guess that’s not what you want?

Instead you could create the email entirely as HTML, and pipe in the questions and answers you want. This will be more work, but will let you control 100% how the email looks, and you would have better control of formatting also :)


If you delete them, so they don’t show in the response summary, then you wont see them in your results either, and I guess that’s not what you want?

Instead you could create the email entirely as HTML, and pipe in the questions and answers you want. This will be more work, but will let you control 100% how the email looks, and you would have better control of formatting also :)


Thanks for your comment. Yes I figured that can be but this I already scripted a code that automatically extract all answers from the data with an api and the puts the results in a mail. We want to use this kind of thing for more projects so your things is a good thing for a specific project, but I am still trying to find for something else


Leave a Reply