Old name: Active directory: User has no title filled in (Built-in)
The report below gives back a list of users in Active directory where the title is missing.
The report will only list users that meet all of the following criteria:
- User found in Active Directory
- Title is empty or null
Select Top 1000000 tblADusers.Username,
tblADusers.Userdomain,
tblADusers.Firstname,
tblADusers.Lastname,
tblADusers.Name,
tblADusers.Displayname,
tblADusers.email,
tblADusers.Title,
'usersm.gif' As icon
From tblADusers
Where (tblADusers.Title Like '') Or
(tblADusers.Title Is Null)
Order By tblADusers.Userdomain,
tblADusers.Username