let Events = MyLogTable | where type=="Event" ; Events | where Name == "Start" | project Name, City, ActivityId, StartTime=timestamp | join (Events | where Name == "Stop" | project StopTime=timestamp, ActivityId) on ActivityId | project City, ActivityId, StartTime, StopTime, Dur...