Hi All,
Any help will be appreciated.
I want to add a field to a MS Access 2013 (Using 2007-2010 Settings) database. I want to add a True/False field.
Field Name to be called DeleteRow.
This is what I have.
CurrentProject.Connection.Execute "ALTER TABLE BALBILL ADD COLUMN DeleteRow BOOLEAN);"
Getting a syntax error in data type (BOOLEAN)
I have tried adding the field as text and then alter the data type using this.
CurrentProject.Connection.Execute "ALTER TABLE BALBILL ALTER COLUMN DeleteRow BOOLEAN;"
I get error stating that it can't find the Field BOOLEAN in the table.
Thanks again for any help!
Chris
Any help will be appreciated.
I want to add a field to a MS Access 2013 (Using 2007-2010 Settings) database. I want to add a True/False field.
Field Name to be called DeleteRow.
This is what I have.
CurrentProject.Connection.Execute "ALTER TABLE BALBILL ADD COLUMN DeleteRow BOOLEAN);"
Getting a syntax error in data type (BOOLEAN)
I have tried adding the field as text and then alter the data type using this.
CurrentProject.Connection.Execute "ALTER TABLE BALBILL ALTER COLUMN DeleteRow BOOLEAN;"
I get error stating that it can't find the Field BOOLEAN in the table.
Thanks again for any help!
Chris