Using Let Statements
Learn how to properly use let to assign queries, dynamic content, and more to variables
Let Statement
Examples
Defining a Threshold
let threshold = 1000;
Perf
| where CounterValue > threshold
| order by CounterValue asc
Declaring Multiple Variables

Declaring a Variable With Dynamic Values

Last updated