I want to add the middle initial field in contacts extended query.
where can i put [middle initial] so that when i view the report the complete name will appear. ex. Juan c. Dela Cruz
Code:
File As: IIf(IsNull([Last Name]),IIf(IsNull([First Name]),[Company],[First Name]),IIf(IsNull([First Name]),[Last Name],[Last Name] & ", " & [First Name]))
Comment