Quote Originally Posted by fishyface
Prob being really thick, but, does is there a way to change access case to Title.

I conduct a mailmerge from selected records but as usual, all different people input to the database therefore caps, lower case etc used. Looks crap without manual intervention at present so looking to control.

If I understand you correctly, use this function on the first and last names:
VB Code:
  1. 'This will uppercase the first letter of a word and lowercase the rest
  2. Private Function CapitalizeFirst(strName as String) As String
  3.   If strName = "" Then
  4.     Msgbox "Invalid name"
  5.     Exit Function
  6.   End If
  7.   strName = Left(UCase(strName), 1) & Right(LCase(strname), Len(strName) - 1)
  8.   CapitalizeFirst = strName
  9. End Function