Select to view content in your preferred language

Parse Duplicate days in a count in a Table

67
0
Wednesday
ScottJones1
Frequent Contributor
I have grouped table, The Incidents might get multiple survey entries a day from different people. I just want to show how many days we have been on an incident. Is there a way to parse out duplicate days?
 

return {
  cells: {
    Incident_: {
      displayText : $datapoint.Incident_,
      textColor: '',
      backgroundColor: '',
      textAlign: 'left',
      iconName: '',
      iconAlign: '',
      iconColor: '',
      iconOutlineColor: ''
    },
   
    COUNT_DATE_OF_EVENT: {
      displayText : Text($datapoint.COUNT_DATE_OF_EVENT),
      textColor: '',
      backgroundColor: '',
      textAlign: 'right',
      iconName: '',
      iconAlign: '',
      iconColor: '',
      iconOutlineColor: ''
    }
  }
}
0 Kudos
0 Replies