If you aren’t already aware of it, there are a set of words which should never be used to name
- Database objects (Tables, Queries, Forms, …)
- Table/Query Fields
- Form/Report Controls
- VBA procedure names, variable, …
these are referred to as Reserved Words and thus Reserved Words need to be avoided at all cost as they can generate strange behaviors or outright failure of your database.
There are numerous examples of oddities caused by Reserved Words, but below is one of them as an example:
The issue with Reserved Words is that there is simply no way to remember them all. Furthermore, when taking over another developer’s work, it is next to impossible to review every object, control, … for such terms.