I have the following code in an after-update event of a field on a form.
Me.txtAttendanceCode = Left(Trim(Me.Parent.txtFirstName), 1) & "" & Me.Parent.txtDOB & "" & Left(Trim(Me.Parent.txtLastName), 1)
I want to use the same code but not include the / marks in the DOB portion of the code.