kusto conditional code example
Example: if else condition in kusto
T
| extend day = iff(floor(Timestamp, 1d)==floor(now(), 1d), "today", "anotherday")
T
| extend day = iff(floor(Timestamp, 1d)==floor(now(), 1d), "today", "anotherday")