I am trying to add a column to my table using VBA. The data type is Yes/No but I connot figure out how to define the data type. I am trying to use this code:
DoCmd.RunSQL "alter table tbl_words add column [" & NewCategoryTable & "] yes/no;"
Any suggestions ? Thank you so much in advance.
DoCmd.RunSQL "alter table tbl_words add column [" & NewCategoryTable & "] yes/no;"
Any suggestions ? Thank you so much in advance.