Forum Discussion
acabrales666
May 19, 2022Copper Contributor
KQL query not working
Hi everyone, I'm not a kusto expert so bare with me. I'm trying to replace a text to another text... The one in bold is what I'm tryng to use but is not working. Basically the log doesn't make a ...
- May 19, 2022
Would this work, just use ?
datatable (ThreatId:string) ["A value","9999","somthing else"] | extend ThreatId = iif(ThreatId == "9999","URL filtering log",ThreatId)
mikhailf
May 19, 2022Iron Contributor
- acabrales666May 19, 2022Copper ContributorHi mikhailf, yes that's correct.
- Clive_WatsonMay 19, 2022Bronze Contributor
Would this work, just use ?
datatable (ThreatId:string) ["A value","9999","somthing else"] | extend ThreatId = iif(ThreatId == "9999","URL filtering log",ThreatId)- acabrales666May 19, 2022Copper Contributorperfect it works! You are awesome!