Allan,
The most common mistakes in this regard are assigning the words 'Date' and
'Name' as field names.
1) You can simply change 'Date' to something like 'dteDate' or 'txtDate' or
'ADate'. I'm sure you get the point. If you have many tables using 'Date', I
would suggest you change the field name to something descriptive to that
table, i.e. 'OrderDate' in the Orders table, 'ShipDate' in the Shipping
table. It makes everything easier to follow and change.
2) You'll need to run through your database and change all instances.
One inefficient way is to change the field names one table manually, then do
the associated form, then it's queries, then reports, then code. When you do
code, it's probably best to enter the old field name and then search using
Edit + Replace. Click on the 'Current Project' button to comb the entire db
code. When done click the Compile tool button. You'll find out quickly
enough if you've overlooked a code entry. Then of course run the database
and see how you did.
When this is correct, go and do the same thing in each other table in order.
If you tried changing all the tables 'Date' field name, you'll have a hard
time to figure out which 'Date' in the code window refers to which table,
and what new descriptive name it should have.
I've not used it, but there is a download from SpeedFerret that will do all
of this for you.
http://www.speedferret.com
Ultimately, your method will depend upon how many instances of the field
name you have to change.
3) There are too many to list them all here.
Pick the KnowledgeBase article below that pertains to your Access version:
109312 'Reserved Words in Microsoft Access'
209187 'Acc2000: 'Reserved Words in Microsoft Access'
286335 'ACC2002: Reserved Words in Microsoft Access'
Have fun.