Sort the rows of the input table into order by one or more columns. Default is descending order
🦄 Example: Intune audit log for the past 7 days
Sort by TimeGenerated column in ascending order.
IntuneAuditLogs
| where TimeGenerated > ago (7d)
| sort by TimeGenerated asc