if else condition in kusto

Solutions on MaxInterview for if else condition in kusto by the best coders in the world

showing results for - "if else condition in kusto"
Souleymane
11 Apr 2017
1T 
2| extend day = iff(floor(Timestamp, 1d)==floor(now(), 1d), "today", "anotherday")
3