Survey Management/Assessment Instance Questions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2016 04:32 AM
Hello,
I have created a survey with questions using the data type Choice. The Assessment Metric Definitions have a Display and Value (the value being numerical). When a person completes a survey it can be found under the Assessment Instance, with the questions/answers under the Assessment Instance Questions, the Choice is found under the Value column, but is only represented by the numerical Value field.
How can I report or even view the Display value of the Choice answer, other than go back into the question and view the choices?
Cheers,
Dan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2016 06:59 AM
I Was thinking to maybe copy the value's display to the string_value field using a business rule, I have not done too much scripting here, so any advice would be great:
setField();
function setField() {
var gr = new GlideRecord("asmt_metric_definition");
gr.addQuery("metric", current.metric);
gr.addQuery("value", current.value);
gr.query();
current.string_value = gr.display; //"test";
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2019 10:08 AM
I have had a similar desire to show the display value of the resulting choice answer instead of just the numeric. This solution sounds like a good starting point. Appreciate you sharing this idea.
We have a customer that is looking to easily see the answers to questions for one assessment at a time. Seems like the only way to see that is to view the user's response, which will show the assessment form as it appears to the person taking the assessment. This method isn't quit ideal. Being able to run a report to see multiple resulting answers showing their display type value would be great.
I will come back if I discover any other solution, but so far this seems like the best idea. It also helps if you are looking to report of answers based on the string value instead of the decimal value (used for metrics).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2020 11:15 PM
This is actually a near identical approach we took so far and has been working well for the customer.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2019 05:42 PM
This is probably too late for you, but I just had the same requirement so I figured I'd post another solution.
The Display Value appears in the Metric Result->Instance related list if you can add that to the Assessment Instance form instead of the Assessment Instance Question->Instance related list.