Hello. I have a PEACE of code looking like that:
Dim ElKup1 As String
Dim sq As String
ElKup1 = (Forms!frmNotInList!Combo6.Column(1)) & " " & Forms!frmNotInList!Combo0.Column(1)
sq = "Update tblElements Set ElementName = ElKup1 WHERE ElementName=null;"
DoCmd.RunSQL sq
When I run the...