Need help on filtering the user domain from userprincipalname collected from sentinel signin logs. I have all user domains separated out from upn as below.
extend UserDomains = split(UserPrincipalName,'@')[1]
In addition to the UserDomains, I need internal domains and external domains. How can I filter UserDomains based on a particular conditions further.
Cheers !