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 answers

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