Can I hide the "Click to Add" column in Access 2010?

When viewing a Microsoft Access table in a Datasheet View, the rightmost column is called β€œClick to Add,” allowing someone to add a new column without using the Design View. Can this column be hidden?

+6
source share
2 answers

Same:

Set options to avoid design changes

Do not forget that you must close and open the database for the changes to work.

+13
source

You can create a query "SELECT * FROM YOUR_TABLE", this will open the table as you like.

+1
source

Source: https://habr.com/ru/post/974768/


All Articles