How can I rewrite the following line to allow % as a value in the data:
SQL_Text = SQL_Text & Me.Combo70.Column(1) & " "
Below is the full line of code
SQL_Text = SQL_Text & "INSERT INTO rq_requisition ([Description], [Price], [Object],
, "
SQL_Text = SQL_Text & "[Department], [Product], [Project], [Activity], [Comments]) VALUES( '"
SQL_Text = SQL_Text & Description1 & " " & Description2 & "',"
SQL_Text = SQL_Text & Me.subformpoinv.Form.AMOUNT & ","
SQL_Text = SQL_Text & Obj & ","
SQL_Text = SQL_Text & Center & ","
SQL_Text = SQL_Text & Orgn & ","
SQL_Text = SQL_Text & Actv & ","
SQL_Text = SQL_Text & "800" & Project__ & "0000" & ","
SQL_Text = SQL_Text & Product & ","
SQL_Text = SQL_Text & Me.Combo70.Column(1) & " "
SQL_Text = SQL_Text & ")
SQL_Text = SQL_Text & "[Department], [Product], [Project], [Activity], [Comments]) VALUES( '"
SQL_Text = SQL_Text & Description1 & " " & Description2 & "',"
SQL_Text = SQL_Text & Me.subformpoinv.Form.AMOUNT & ","
SQL_Text = SQL_Text & Obj & ","
SQL_Text = SQL_Text & Center & ","
SQL_Text = SQL_Text & Orgn & ","
SQL_Text = SQL_Text & Actv & ","
SQL_Text = SQL_Text & "800" & Project__ & "0000" & ","
SQL_Text = SQL_Text & Product & ","
SQL_Text = SQL_Text & Me.Combo70.Column(1) & " "
SQL_Text = SQL_Text & ")