I imported a table into access and I want to add a column in that has a value for 1 for every row. Instead of having to go into the table and changing every single one. (400,000) Is there a way of doing it with VBA or a macro? If so how? Thanks.
Add the column, set it's default to 1 (if you always want it to default to that).
Use a query to update all the rows, you don't need any criteria since it is a new column and you are updating all rows.