everything is an object, we can easily do the searching using the Where-Object cmdlet (alias ?).PS C:\> Import-Csv sample2.log -Deli `t | ? { $_.Sender-Address" -eq 'admin@mynet.com' } | Select Recipient-AddressRecipient-Address-----------------juser@mynet.com...Nothing we have not done before.