Forum Discussion
Specifying a blank\no value
- Mar 15, 2023
Updates: as part of the original reply was missed!
EmailEvents
| where EmailDirection == "Inbound" and SenderMailFromAddress contains "gmail.com"
| project EmailDirection, SenderMailFromAddress, Subject
| where isnotempty( Subject)and what you need (I hope):
EmailEvents | where EmailDirection == "Inbound" and SenderMailFromAddress contains "gmail.com" | project EmailDirection, SenderMailFromAddress, Subject | where isempty(Subject)
Tested with:
EmailEvents
| where EmailDirection == "Inbound" and SenderMailFromAddress contains "gmail.com"
| project EmailDirection, SenderMailFromAddress, Subject
| summarize empty_=countif(isempty(Subject)), notempty_=countif( isnotempty(Subject)) by SenderMailFromAddress, Subject
Updates: as part of the original reply was missed!
EmailEvents
| where EmailDirection == "Inbound" and SenderMailFromAddress contains "gmail.com"
| project EmailDirection, SenderMailFromAddress, Subject
| where isnotempty( Subject)
and what you need (I hope):
EmailEvents
| where EmailDirection == "Inbound" and SenderMailFromAddress contains "gmail.com"
| project EmailDirection, SenderMailFromAddress, Subject
| where isempty(Subject)
Tested with:
EmailEvents
| where EmailDirection == "Inbound" and SenderMailFromAddress contains "gmail.com"
| project EmailDirection, SenderMailFromAddress, Subject
| summarize empty_=countif(isempty(Subject)), notempty_=countif( isnotempty(Subject)) by SenderMailFromAddress, Subject
- CodnChipsMar 30, 2023Brass ContributorThanks Clive - always very helpful.