- Local time
- Tomorrow, 00:04
- Joined
- Jan 20, 2009
- Messages
- 12,895
I realise you are working on someone else's database but I just had to comment on the horrible fieldnames. Using special characters, particularly the hash makes reading it very clumsy. Special characters already have meaning in code and should be completely avoided in names.
Names with spaces and special characters always require the square brackets creating unnecessary work. Spaces break up the code unnaturally by placing greater separation within a name than outside of it.
Case is a poor choice to include in a name too because the Select Case statement in VBA.
The worst name I ever saw used in a database was [Select Case].
Names with spaces and special characters always require the square brackets creating unnecessary work. Spaces break up the code unnaturally by placing greater separation within a name than outside of it.
Case is a poor choice to include in a name too because the Select Case statement in VBA.
The worst name I ever saw used in a database was [Select Case].