Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2025 10:21 PM
if (["CheckBox1", "CheckBox2", "CheckBox3"].indexOf(label) !== -1) {
var rawValue = question.getValue();
displayValue = (rawValue === 'true') ? 'YES' : (rawValue === 'false') ? 'NO' : 'Unknown';
}
labelValueMap[label] = displayValue;in your current code, make the variable naming change and try.