I tried adding a chr(34) but SQL does not like it.
Code:
" Report1 = " chr(34) & Me.txtReport1.Text & chr(34) & ", " & _
'here is my original SQL string
SQLUpdateString = "Update Recognition Set CommonName = '" & Me.txtEmployeeName.Text & "', " & _
" EmployeeEPriseID = '" & Me.txtEmployeeEPriseID.Text & "', " & _
" Location = '" & Me.txtLocation.Text & "', " & _
" VPName = '" & Me.txtVPName.Text & "', " & _
" Nominator = '" & Me.txtNominator.Text & "', " & _
" Reporttomanager = '" & Me.txtReportToManager.Text & "', " & _
" Report1 = '" & Me.txtReport1.Text & "', " & _
" Report2 = '" & Me.txtReport2.Text & "', " & _
" Report3 = '" & Me.txtReport3.Text & "', " & _
" AwardType = '" & Me.ddlAwardTypes.Text & "', " & _
" [Event] = '" & Me.txtEvent.Text & "', " & _
" Awarded = '" & Me.ddlAwardedYN.Text & "', " & _
" DateAwarded = '" & Me.txtDateAwarded.Text & "', " & _
" NominationSummary = '" & Me.txtNominationSummary.Text & "', " & _
" ePrizeID = '" & Me.txtUserEPriseID.Text & "' " & _
"Where UniqueID = " & Session("EditSQLRecordID") & ""