Enterprise Reporter

I would like to find a report that checks an OU that contains security groups. Then, it displays all users who are not in that OU. Is this possible with Enterprise Reporter? If I could import a powershell script it would look like this:

$groupDN = Get-ADOrganizationalUnit -Identity "OU=EV Groups, OU=Custom Groups, DC=<domain>, DC=com" | Select-Object -ExpandProperty DistinguishedName
Get-ADUser -Filter {employeeNumber -like "*" -and Memberof -notlike $groupDN -and enabled -eq "true"} | Select Name