code:Function talker(strInput) If strInput <> "" Then talker = UCase(Left(strinput, 1)) & Mid(strinput, 2) Else: talker = "" End If End Function