> ## 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.

# Access 101: Bound vs. Unbound Forms
- URL: https://nolongerset.com/bound-vs-unbound-forms/
- Published: 2023-10-07T01:58:38.000Z
- Updated: 2026-05-08T12:36:00.000Z
- Description: A short primer on the difference between bound and unbound forms in Microsoft Access, along with example use cases for each.
- Author: Mike Wolfe
- Tags: Access 101, #Import 2026-05-20 02:59

*This article is part of my Quick Start Guide to Microsoft Access series, [Access 101](https://nolongerset.com/access-101/).*

---

A bound form displays data from a table or query.

An unbound form is not connected to a data source at all.

In practical terms, a bound form is one with a RecordSource property set, while an unbound form's RecordSource property is blank.

Of course, this raises an obvious question: What is a record source?

## Record Source

A record source identifies the data source that a bound form is connected to.

The three most common types of record sources are:

1. Table Name
2. Query Name
3. SQL SELECT statement

As you navigate through the form, you're essentially navigating through the records in the record source.

## Common Use Cases

### Bound Forms

1. Editing Records
2. [Master Lookup Forms](https://nolongerset.com/master-lookup-form/)
3. [Tabbed Master-Detail Forms](https://nolongerset.com/tabbed-master-detail-form/)
4. [Progress Tracker Form](https://nolongerset.com/progress-tracker-form/)

### Unbound Forms

1. Menu / Navigation Forms
2. Report Preview Forms
3. ["Get Data" Forms](https://nolongerset.com/pass-values-without-global-form/)
4. ["Add Record" Forms](https://nolongerset.com/use-unbound-forms-to-add-records/)
5. [Two-Way Many-to-Many Forms](https://nolongerset.com/two-way-many-to-many-form/)

##### Acknowledgements

- Portions of this article's body generated with the help of [ChatGPT](https://nolongerset.com/chatgpt-nls/)