Microsoft Access: Table Properites, Complex Forms. Start with a new, blank Access database,

Similar documents
Microsoft Access: Let s create the tblperson. Today we are going to use advanced properties for the table fields and use a Query.

Microsoft Access. Note: This slideshow is a continuation of the previous slideshow.

Microsoft Access. Data may include facts about people, events, things, or ideas, and is an important asset to any organization.

The specific steps to build Wooden Crafts database are here: 1. Create New Database. i. After opening Access, click Blank Desktop Database :

Access Intermediate

MODULE III: NAVIGATING AND FORMULAS

Office Access. Intermediate

Creating a Directory with a Mail Merge from an Excel Document

We will start by reviewing some interface features, then we will explore Mail Merge.

Until mybtec is up and running, we re making the TAPs available as downloads through the Pearson Schools and FE Colleges website.

CUSTOMISE FIELDS AND LAYOUTS 2010

Basic tasks in Outlook 2016

_APP A_541_10/31/06. Appendix A. Backing Up Your Project Files

CREATING CUSTOMER MAILING LABELS

Outlook 2013 Basic Tasks

ADMS-8100 Programming Software for the Yaesu FT-8100

MATLAB Introduction To Engineering for ECE Topics Covered: 1. Creating Script Files (.m files) 2. Using the Real Time Debugger

Microsoft Office 2016 Mail Merge

Use signatures in Outlook 2010

Oracle SQL. murach s. and PL/SQL TRAINING & REFERENCE. (Chapter 2)

Introduction to Microsoft Access 2016

Excel Foundation (Step 2)

Introduction to Microsoft Office Access 2010

MATLAB - Lecture # 4

Chapter11 practice file folder. For more information, see Download the practice files in this book s Introduction.

Using Microsoft Excel

1. Welcome to ANCS+ 8.0 Automated Inventory Program. This course will teach you how to create and print your random sample, controlled property

Excel 2013 for Beginners

Understanding PowerPoint s Text Capabilities

KINETICS CALCS AND GRAPHS INSTRUCTIONS

GOOGLE SHEETS TUTORIAL

University of North Dakota PeopleSoft Finance Tip Sheets. Utilizing the Query Download Feature

Mail Merge Labels Envelopes

ST. JOHN FISHER COLLEGE

K Hinds Page 1. Information Communication Technology Microsoft Access

TIDY LABELS. User Guide

Microsoft Access 2007 Module 1

WCS-7200 Programming Software for the Icom IC-7200

M i c r o s o f t. Office Introductory Concepts and Techniques. Access Project 1. Creating and Using a Database

APS Installation Documentation

FLIR Tools+ and Report Studio

ADMS-4B Programming Software for the Yaesu FT-857 / FT-897

SharePoint Designer Advanced

Microsoft. Student Edition. The Richard Stockton College of New Jersey. Computer Courseware

ADVANCED INQUIRIES IN ALBEDO: PART 2 EXCEL DATA PROCESSING INSTRUCTIONS

Procedures, Parameters, Values and Variables. Steven R. Bagley

NQF ONLINE MEASURE SUBMISSION FORM USERS GUIDE

Creating letters using mail merge in Microsoft Word (Windows PC)

Drupal Workshop, Part 5

BASICS. Create a Project. Click on a question below to skip to the answer. How do I create a project?

New Perspectives on Access Module 5: Creating Advanced Queries and Enhancing Table Design

Tab-Delimited File and Compound Objects - Documents, Postcards, and Cubes. (Not Monographs)

My First iphone App (for Xcode version 6.4)

Simple sets of data can be expressed in a simple table, much like a

Tutorial 1: Introduction to Microsoft (MS) Access. Microsoft Access: A Relational Database Application

CSCI 1100L: Topics in Computing Lab Lab 07: Microsoft Access (Databases) Part I: Movie review database.

Sections vs. Pages... 3 Adding Images & PDFs... 4 Assets & Snippets... 5 RSS Feeds & News Items... 6 Directory Pages... 6 Help & Resources...

RPS-7800 Programming Software for the TYT TH-7800

RPS-Q5 Programming Software for the Tonfa TF-Q5

Power Query for Parsing Data

Engage Meeting Manager. User guide

Using Microsoft Word. Getting Started With Word. Starting the Program

MIS 2502 Access 2007 Tutorial

2013 Alabama State Amend Instructions for TurboTax Online Users:

Easy Windows Working with Disks, Folders, - and Files

SAMaRT User Guide Microsoft Excel (Advanced version)

Esker Automated AP Program. Step-by-Step Procedure

Setting up and Connecting to a MSSQL database

HOW TO PERFORM A MAIL MERGE (Microsoft Office 2003)

Initial Direct Access Sign On/Change My Password/Forgot Password Overview

KRS-G71 Programming Software for the Kenwood TH-G71

RPS-KGUV950P Programming Software for the Wouxun KG-UV950P

Performing Matrix Operations on the TI-83/84

KRS-G707 Programming Software for the Kenwood TM-G707

Inserting or deleting a worksheet

Learning Worksheet Fundamentals

2014 Alabama State Amend Instructions for Online Users:

Rev. B 12/16/2015 Downers Grove Public Library Page 1 of 40

KRS-590 Programming Software for the Kenwood TS-590

Microsoft Office Access 2013

Tutorial 5 Advanced Queries and Enhancing Table Design

Using Custom Number Formats

Making ERAS work for you

Church Helpmate 2010 What s New

Academic Personnel Services. Temporary Faculty Pool Applicant Processing Guide

APK-SR8 Programming Software for the Alinco DX-SR8

What can I say? The Excel program window (shown in Figure 1-1)

2. create the workbook file

ADMS-2H Programming Software for the Yaesu FT-8900

TelstraClear Technical Document

6. Essential Spreadsheet Operations

Enhancing PDF Documents - Adobe Acrobat DC Classroom in a Book (2015)

WCS-R10 Programming Software for the Icom IC-R10

Microsoft Office 2010: Introductory Q&As Access Chapter 3

Microsoft Word 2010 Mail Merge. 3/9/2011 Archdiocese of Chicago Mike Riley

Directions for Setting up Remote Desktop Connection for PC:

Word Overview Page 3 Tables Page 5 Labels Page 9 Mail Merge Page 12. Excel Overview Page 19 Charts Page 22

Installing and Configuring Xitron RIP Software and Ohio GT RIP Plug-In

Using Mail Merge with Word

MOOSE SMARTERMAIL

Transcription:

: Table Properites, Complex Forms Start with a new, blank Access database,

: Let s create the tblperson. We are going to use advanced properties for the table fields and create an advanced form.

Add a SSN input mask to the PersonID field using the Wizard.

Limit the first and last name to just 20 characters.

Limit the state to just two characters.

Program your own simple input mask for field PersonZipCode: The digit 0 is used to indicate a number is required. The \ is used to display the next character as entered, which is the - hyphen in this case. There are required five digits, a hyphen, and then an optional four digit code. The last four digits indicate a more specific location within a given ZIP code. Since the last four digits aren t always used, a 9 indicates the last four digits are optional.

Add a semicolon ; and a use a 0 (zero) to indicate that the hyphen should be stored with the data, or use a 1 if you don t want to store the hyphen with the data. Using the value 1 can help save space in a large database because the hyphens (or other characters that you used in the input mask) won t be stored.

Add another semicolon ; and type in the placeholder character you would like to use. The default placeholder is an underscore _.

Program your own simple input mask for field PersonCreditCardNumber: The digit 0 is used to indicate a number is required. The \ is used to display the next character as entered, which is the - hyphen in this case. There are 16 digits in the, in groups of 4 separated by hyphens. All digits are required, so we use a 0 (zero).

Then program the table to save the hyphens and to use the placeholder #.

Use DataType Date/Time for the PersonCreditCardExpirationDate.

Add the PersonCreditCardSecurityCode as DataType Text and program the Input Mask to be 000. Remember, 0 is used to indicate that a digit is required. Three zeros in a row means three digits must be entered.

Add the field PersonCreditCardVerified as Data Type Yes/No.

The tblperson so far.

Now that we know about programming input masks, let s add an input mask for the two-letter state abbreviation. We don t use 00 (zero-zero), but instead we use LL. The letter L indicates a letter is required, and users need to type two letters.

Now add a greater than sign > in front of the LL. The > sign converts all characters that follow to uppercase.

Program input masks for the first and last name fields. Add > and < symbols and then repeated? (up to 20 total characters). The < symbol is used to indicate all following characters will be lowercase.

Program input masks for the first and last name fields. Add > and < symbols and then repeated? (up to 20 total characters). The < symbol is used to indicate all following characters will be lowercase.

The completed tblperson. Close the Table.

REMINDER: Forms are created to easily add raw data to your tables. Extra Information From the Microsoft Office website: Forms in Access are like display cases in stores that make it easier to view or get the items that you want. Since forms are objects through which you or other users can add, edit, or display the data stored in your Access desktop database, the design of your form is an important aspect. If your Access desktop database is going to be used by multiple users, well-designed forms are essential for efficiency and data entry accuracy. - support.office.com

Create a form to conveniently add data to the table: After setting up the table, close it then select the table you would like to create the form for first, then click Form. Close the form and save it with the appropriate prefix: frm.

Use the Design View and the Form Design Tools tabs to modify the appearance of the form.

Set the form to Pop-Up by adjusting properties in the property sheet task pane:

Try disabling the form Close Button (when you do this a form can be closed by right-clicking the top bar and selecting close):: Try disabling the ability to move the form: Set it to Auto Center. This will center the form in your Access window only (it doesn t center the form on the screen): After you test these out return the settings back to normal.

After adjusting the form appearance and properties, go to Form View to add data to the table tblperson. Let s add two fictitious records. When you add data to the form it will automatically add the data to the table. Scroll through the records. You can make changes with the form.

Confirm that tblperson has been successfully populated with data by viewing the table in data sheet view.