Hi,
I’m trying to display a question if the start date and end date of a medical degree is greater than 4 years apart. How would I do that?
I’ve tried some javascript, but no luck. Dates are provided in a form field question as mm/dd/yyyy.
Qualtrics.SurveyEngine.addOnload(function()
{
var answer = "${q://QID11/ChoiceTextEntryValue/1}"; // Replace QID1 with your actual Question ID
var lastFourChars = answer.slice(-4);
Qualtrics.SurveyEngine.setEmbeddedData('startyears', lastFourChars);
var answer2 = "${q://QID11/ChoiceTextEntryValue/2}"; // Replace QID1 with your actual Question ID
var lastFourChars2 = answer.slice(-4);
Qualtrics.SurveyEngine.setEmbeddedData('endyears', lastFourChars2);});