ClaraBarton
Registered User.
- Local time
- Yesterday, 23:56
- Joined
- Oct 14, 2019
- Messages
- 645
Code:
"INSERT INTO tblLabel (Line1, Line2, Line3, Line4) " & _
"VALUES " & _
"(""" & Company & """, " & _
"""" & FirstName & " " & "" & LastName & """, " & _
"""" & Address & """, " & _
"""" & City & " " & "" & State & " " & "" & ZIP & """)"
I am so bad at this... I want to insert a field called Sort here and I cannot figure out how to insert the literal "A"
Code:
"INSERT INTO tblLabel (Sort, Line1, Line2, Line3, Line4) " & _
"VALUES " & _
"(""" & Company & """, " & _
"""" & FirstName & " " & "" & LastName & """, " & _
"""" & Address & """, " & _
"""" & City & " " & "" & State & " " & "" & ZIP & """)"