Note |

Access stores text and memo data in a format called Unicode.  This format handles accented characters, foreign alphabets such as Greek or Hebrew, and even mathematical symbols with ease.  so, there's no need to worry about what kind of data your text fields can hold.

Tip |

To change the value of a property such as Required from No to Yes, or vice versa, just double-click the property.

Note |

Replication IDs are coded values used in databases that are maintained on multiple computers simultaneously.  You'll probably never use a replication ID in your own database.

Tip |

For most data, you'll be safe using long integer fields for numbers without factions and double fields for numbers with fractions

 

Note To Be -

When choosing a field size for a numeric data type, you need to keep in mind several things:

Tip |

Whenever you set the Validation Rule property, you should also set the Validation Text property.  That's the best way to give feedback to database users when they make a mistake

 

Examples of Validation Rules

Rule Meaning
<=50 Less than or equal to 50
<>5 Not equal to 5 - any value except 5 is allowed
Is Not Null Must enter something, rather than leaving the field blank.  This is equivalent to setting the required property to Yes
<10 or Is Null Less than 10; otherwise, blank
Like "B*" Must start with the letter B.  The asterisk is a wild card that matches any number of characters.
Like "?????X" Must be six characters and end with the letter X.  The question mark is a wild card that matches precisely one character.
Between #1/1/2001# And #12/31/2005# Any date between January 1, 2001, and December 31, 2005.  The pound signs are how Access Indicates dates in an expression.

Tip |

The format Access uses for currency is taken straight from Windows.  You can modify this in the Regional Settings application in Control Panel if you want.

Tip |

Access does not let you enter a value in an autonumber field yourself.  If you try typing in an autonumber field, Access just beeps at you

Tip |

The default value of yes/no field is no.  If most of your records will require a yes value, you can change the field's Default Value property to yes in design view.  Then, simply uncheck the fields as the no values occur.  This way, you can save yourself a few keystrokes.

Tip |

To edit the data in a hyperlink field, click in the previous field in the table and then press the Tab key to move to the hyperlink field.