How to report on Open vs. Closed records?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-24-2021 12:02 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2021 03:43 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2021 04:09 PM
Hi,
You wont be able to change the true/false because its a tick box (true/false field) your reporting on.
.
The only way you can do it is to create a new field which looks at the true/false and translate it. Easy way is to create calculated field with the below script.
(function calculatedFieldValue(current) {
var truefalse = current.fieldname; //add your true/false field name here
if(truefalse){
return "Yes"; //change answer if true
}
else{
return "No"; //change answer if false
}
})(current);
Only drawback is that it will only show on records updated after you have implemented the change so historic data unless its been updated wont be visible.
I believe there's been an idea proposed with servicenow to change this however will be in future releases.
Please mark as helpful or if its resolved the issue correct!