> ## Content Index
> Fetch the complete content index at: https://nolongerset.com/llms.txt
> Use this file to discover other available public pages before exploring further.

# Googleable Field Names
- URL: https://nolongerset.com/googleable-field-names/
- Published: 2021-02-08T04:01:53.000Z
- Updated: 2026-05-08T13:06:32.000Z
- Description: Using globally unique field and table names will make it easier to identify where such fields and tables are used throughout your application.
- Author: Mike Wolfe
- Tags: Conventions, #Import 2026-05-20 02:59

If you search for Visual Basic on the internet, you will get results for no less than three distinct programming languages:

1. Visual Basic .NET (aka, *VB.NET*)
2. Visual Basic 6 (aka, *VB6* or *Classic Visual Basic*)
3. Visual Basic for Applications (aka, *VBA*)

As an Access developer, you are probably acutely aware of this problem. I can't tell you how many times I've done a search for some VBA feature only to be dumped on a page with information for VB.NET. 

## The Problem with *Ungoogleable* Names

When searching for terms with poor *Googleability*, such as "vba", the results often have poor [signal to noise ratio](nolongerset.com/signal-vs-noise/).

Here are the Google search results for "**[vba continue for](https://www.google.com/search?q=vba+continue+for)**":

![](https://storage.ghost.io/c/eb/d7/ebd732c1-5f03-4f07-b386-5d08557e15c9/content/images/2021/02/image-1.png)

Hey, when did VBA get a Continue For statement?

And here is the *second* [result](https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&cad=rja&uact=8&ved=2ahUKEwjUssT8m9juAhWig-AKHSfUAtkQFjABegQIAhAC&url=https%3A%2F%2Fdocs.microsoft.com%2Fen-us%2Fdotnet%2Fvisual-basic%2Flanguage-reference%2Fstatements%2Fcontinue-statement&usg=AOvVaw1mENh5KGwkiS6N6Esk8FWa) for that search string:

![](https://storage.ghost.io/c/eb/d7/ebd732c1-5f03-4f07-b386-5d08557e15c9/content/images/2021/02/image-2.png)

No, Google, this search result is not applicable to VBA

### Why would Microsoft do this?

There is a perfectly rational reason for this Visual Basic search confusion: marketing. After all, there *is* a lot of overlap among the three incarnations of Visual Basic. The syntax in particular is nearly identical, with VB.Net gaining some additional features such as the aforementioned `Continue` statement.

Given this similarity, Microsoft had a keen interest in making sure that existing VB developers embraced each new evolution of the programming language. The resulting technical confusion in the world of web search became the innocent bystander victim.

## What Does This Have to do with Field Names?

While you won't be searching Google for the table and field names in your Access applications, you will often find yourself searching the application itself for instances of those field names. For example, if you need to alter your database schema, you'd better be sure what impact those changes will have on your application.

Let's say you've written an accounting application. You have five different tables that each have a field named, "Amount." After several years of ongoing development, you realize that one of those tables needs to be normalized further. As a result, one of those five "Amount" fields will be split out into a new table. 

That sort of refactoring always starts with identifying where the current field is used in your application. The task is made unnecessarily harder if you've used a generic name like "Amount" which is likely to appear all over the place.

### A better way

Whenever possible, use *globally unique* field and table names. Instead of having an "Amount" field on both your Invoice and LineItem tables, name one of them "InvoiceAmt" and the other "LineItemAmt."

And, for goodness sake, avoid using [reserved words](https://nolongerset.com/bad-words-in-access/) to name your fields.

*Image by [377053](https://pixabay.com/users/377053-377053/?utm%5Fsource=link-attribution&utm%5Fmedium=referral&utm%5Fcampaign=image&utm%5Fcontent=459196) from [Pixabay](https://pixabay.com/?utm%5Fsource=link-attribution&utm%5Fmedium=referral&utm%5Fcampaign=image&utm%5Fcontent=459196)*