Forum Discussion
Nimantha_Deshappriya
Sep 27, 2024Copper Contributor
KQL query to ignore placeholders
Hi Team,
Can you please provide me a query to ignore account filed that has "-\- "
- "\" is a special character in KQL so the trick is to use two
e.g.
| where Account !="-\\-"
- Clive_WatsonBronze Contributor"\" is a special character in KQL so the trick is to use two
e.g.
| where Account !="-\\-"- Nimantha_DeshappriyaCopper ContributorThanks. It worked.