Similar to CONCAT equivalent in MS Access, I want to insert a string including a percentage symbol.
INSERT INTO Financier_Fp_line (FP_Id, Item_, Creditor, Description, Payment_Type, Actual_Amount, Note_)
VALUES (
'86',
'2',
"",
'BFA 10%',
"Set-aside",
'20',
''
)
is not working.
My original text was BFA 10%
.
I've tried concatenating as above using "+" and "&". I get the same error with each method.
Data type mismatch in criteria expression.
Any clues anyone?
Edit 2019.05.10: In re-creating the sql (as requested, now shown above), either oledb or Access itself decided to not interpret the % as a wild-card, and the insert is working fine. Go figure.
Thanks people.