Solved
Transforming entered date
My researcher asks:
"If I ask people to enter a date, say the day that their assignment is due, how can I then generate the date two weeks earlier?"
Best answer by TomG
You can use moment.js. It would be something like this:
```
Qualtrics.SurveyEngine.addOnPageSubmit(function() {
var startDate = moment(jQuery("#"+this.questionId+" .InputText").val()).subtract(2, 'weeks');
Qualtrics.SurveyEngine.setEmbeddedData('startDate', startDate);
});
```
View originalLeave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.