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
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
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