isnotempty()
Returns true
if the argument isn't an empty string, and it isn't null.
isnotempty("") == false
Syntax
isnotempty(
[value])
notempty(
[value])
-- alias of isnotempty
Example
T
| where isnotempty(fieldName)
| count
Returns true
if the argument isn't an empty string, and it isn't null.
isnotempty("") == false
isnotempty(
[value])
notempty(
[value])
-- alias of isnotempty
T
| where isnotempty(fieldName)
| count