tblRecruit has four fields: FName, LName, MiddleInitial, RecruitSSN. All four fields are text. MiddleInitial is size 1, Recruit SSN is size 9.
A report shows LName, FName. Now the user wants to complicate matters by eliminating the first name on this report. He only wants the last name displayed – unless two people have the same last name. Then he wants to display last name, first initial. middle initial. for just the people with the same last names.
for example:
Baker
Cooper, I. M.
Cooper, B. A.
Davis
To make matters worse, he wants to display the last four digits of the RecruitSSN for those people who happen to have the same last name and the same first two initials.
for example
Baker
Cooper, I. M.
Cooper, B. A., 1324
Cooper, B. A., 2345
Davis
There are other reports that use the entire first name and SSN. So I do not want to remove the data, just what is displayed. Any and all assistance dealing with this problem will be greatly appreciated.