How to filter the records in Kusto

43 Views Asked by At

I am trying to get the event names in each department by Id. I tried with filters and othe but unable to get it. Any inputs?

enter image description here

1

There are 1 best solutions below

3
Yoni L. On BEST ANSWER

you could try using the make_set() aggregation function.

for example:

T
| summarize make_set(Event) by DeptId, DeptName