I am using MS Access 1997 version (.mdb
file). On a daily basis, I need to insert values manually. In that file, there's a column Logical
(Boolean data type). I am automate this template using SQL query instead of direct entry.
Below is my insert query:
Insert Into Data_CustomerTransmit_Tbl (Logical)
Values (" & Logicalnme & ")
Values:
Logicalnme - True
When I run this query in VBA in Excel, I get this error message
Syntax Error in Insert into Statement
Kindly confirm shall I use "Logical" as column name or this is the reserved keyword?
Thanks in advance.
Insert Into Data_CustomerTransmit_Tbl (Logical) Values (1)
– ColonnadeValues (" & Logicalname & ")
. No one would label a variable Logicalnme ... – Scotney