Forum Discussion

MichalZiemba's avatar
Sep 16, 2020
Solved

How to aggregate results from a query

I have built a simple query to show the result of a specific conditional access policy, but I am struggling with device info. Cannot aggregate the info into one row.  First, let's start with the mos...
  • hspinto's avatar
    hspinto
    Sep 17, 2020

    MichalZiemba 

     

    instead of mv-expanding DeviceDetail (you're creating new rows) you should extend it to new columns, by using the extend operator, such as

     

    | extend OS = DeviceDetail.operatingSystem, Browser = DeviceDetail.browser

Resources