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 "-\- "
- Sep 27, 2024"\" is a special character in KQL so the trick is to use two
e.g.
| where Account !="-\\-"
Clive_Watson
Sep 27, 2024Bronze Contributor
"\" is a special character in KQL so the trick is to use two
e.g.
| where Account !="-\\-"
e.g.
| where Account !="-\\-"
- Nimantha_DeshappriyaSep 27, 2024Copper ContributorThanks. It worked.