Hi,
I'm trying to show all the ovedue types and count the number of items for those types even if they're 0 or empty. Unfortunately, when I use the Summarize node, the overdue types without values are excluded. Example below:
Input:
| Overdue Type | Item ID |
| Not Overdue | a |
| Overdue | |
| Not Overdue | b |
| Not Overdue | c |
Current Output (grouped by overdue type and count using countdistinct):
| Overdue Type | # of Items |
| Not Overdue | 2 |
Desired Output:
| Overdue Type | # of Items |
| Not Overdue | 2 |
| Overdue | 0 |
Thanks