I have an unbound text box on a form used for printing hard copies of cards used for filing purposes. The text box, which gets its data from 3 fields in the form’s underlying query, has its Control Source set to :
=[LastName] & “, ” & [FirstName] & ” ” & [MiddleName]
I would like to print the entire LastName field appearing in all capitals with the FirstName and MiddleName fields appearing in the normal mixed upper and lowercase. i.e.;
JONES, James Earl
Anybody out there have any suggestions?