Skip to main content

Navigating the Access Workspace

In This Chapter

  • Getting started
  • Checking out the tabs, buttons, and menus
  • Using your mouse to get from here to there
  • Letting your fingers do the walking

If you skipped Access 2007 and 2010 and are coming to Access 2013 from the 2003 version, you’re probably surprised by the new interface, which was introduced with Microsoft Office 2007. If you did upgrade to Access (or Office) 2010 when it first came out, then the 2013 interface looks very familiar — and you’ll find much of it to be the same as what you’re accustomed to.

For those to whom the Office 2013 is a big change, take note of the following changes to the interface, which is strikingly different from what you may have used in previous versions:

  • Menus have given way to tabs and buttons arranged in a strip across the top of the screen — known as the Ribbon.
  • Toolbars are no longer made up of distinct 3-D buttons. Instead, there are buttons and graphic examples of formatting, pictures of what the buttons create, and drop-down lists.

For users of Access 2007: Notice the new File tab and resulting panel. Instead of spawning a square menu, the button now displays the panel shown on the right in Figure 2-1, where common tasks such as saving and printing are available. It even looks different than it did in 2010 — so 2010 users will also be surprised at the look of this panel and how it appears onscreen when you click the File tab.

The File tab displays a list of commands plus information about the open database.
Figure 2-1: The File tab displays a list of commands plus information about the open database.

Note that to return to the Home tab, you must click the left-pointing arrow at the top of the File panel. It works like a Back button in a browser window and returns you to the Home tab, or whichever tab you were on when you clicked the File tab.

You also see features in the center and on the sides of the workspace, which change depending on what you’re doing or which button you’ve clicked:

  • If you’re starting a new database, options for doing so appear in the center pane (click New in the red panel on the left).
  • If you’re working with an existing database, clicking Info (as shown in the previous figure) displays a link to “View and edit database properties”, which shows you information about the open database, or to Compact & Repair your database, or to Encrypt the database with a password.
  • Clicking Save, Save As, Print, and Options open dialog boxes through which you can perform those tasks. Options, of course, displays settings you can change to control how Access looks and works.

I won’t go into every possible combination of onscreen features in this chapter — you get to know a lot of them in the subsequent chapters. For now, I’ll show you the basic workspace in three states:

  • When Access first opens up
  • When a new database is being built, either from scratch or when you’ve started with one of Access’s database templates
  • When you’re working on an existing database

As you read through the following sections, you can refer solely to the accompanying figures or, if you want, try to work along with the procedures — you’ll find doing what you see described here boosts your confidence when you’re using Access later, on your own.

Comments

Popular posts from this blog

Access Field Types and Uses

A field, you remember, is where your data lives. Each field holds one piece of data, such as Last Name or Batting Average. Because there are so many different kinds of information in the world, Access offers a variety of field types for storing it. In fact, Access puts the following field types at your disposal: Short Text Long Text Number Currency Date & Time Yes/No Lookup & Relationship Rich Text Attachment Hyperlink OLE Object Calculated There’s also an Autonumber field type, which is applied automatically to the first field in a new, blank database. The types just listed are those available for fields you create in addition to that first field — the ones that will contain your data. For now, suffice it to say that the Autonumber field is a field that contains an automatically-generated number so that each record is unique in that it has a unique autonumber, or ID. You get the word about the need for (and ways to create) unique fields later on, in Chapter ...

Building a Database in Access

So you’ve read a few posts here at the beginning of the blog, maybe you’ve leafed ahead where I’ve referred to other chapters, and now you feel ready. You want to dive in and start building a database. Keeping in mind my previous advice to take it slowly, you can take a whack at it here. In the following procedure, you set up a new database and then use the Table Wizard to build the first table in the database. Ready? Here we go . . . 1. If Access is not already running, take a moment to start it. Chapter 1 shows you how to do this. In the Access workspace, a series of large template icons appears, below a Search for Online Templates box, accompanied by links to likely searches for templates that store Assets, Business, Contacts, Employee, and so on. 2. Click the Blank Desktop Database icon. A Blank Desktop Database dialog box appears, as shown in Figure 3-1. Figure 3-1: New blank databases need names. Give yours one here. 3. Type a name to replace the generic Databa...

Databases with user forms

When you’re planning your database, consider how the data will be entered: If you’ll be doing the data entry yourself, perhaps you’re comfortable working in a spreadsheet-like environment (known in Access as Datasheet view), where the table is a big grid. You fill it in row by row, and each row is a record. Figure 1-1 shows a table of customers in progress in Datasheet view. You decide: Is it easy to use, or can you picture yourself forgetting to move down a row and entering the wrong stuff in the wrong columns as you enter each record? As you can see, there are more fields than show in the window, so you’d be doing a lot of scrolling to the left and right to use this view. You may want to use a form (shown in Figure 1-2) instead. A form is a specialized interface for data entry, editing, and for viewing your database one record at a time, if Someone else will be handling data entry Typing row after row of data into a big grid seems mind-numbing Figure 1-1: Datasheet view ...