you can include EnrollmentFlags column in the view and then use Where-Object to filter autoenrolled certs:
Unfortunately, CA database engine does not support bitwise operators, therefore they must be applied out of band (in PowerShell you can use Where-Object cmdlet).
Get-CA ca01* | Get-IssuedRequest -Property EnrollmentFlags | where {$_-band 0x20}