Likert Scale Question Text

Is there any way to get the text from the question of each array element of the Likert scale. I'm trying to add these into a SQL table and we will have changing questions so I want to capture what the question text is.

Hello @IT.Joe,

You can get the array of questions or the specific one using the code:

// returns an array of questions
fd.control('LikertScale1').questions
//returns the first question
fd.control('LikertScale1').questions[0]