The following example illustrates how to import formatted numeric data from
a Microsoft Excel worksheet into a Microsoft Access database, and then
how to create a query that filters the numbers.
Creating the Import Data File
This section shows you how to create a Microsoft Excel worksheet that has
numbers formatted to contain trailing zeros in each cell. It then shows
you how to save the worksheet to a text file to retain the trailing zeros.
These trailing zeros are part of the number format, not part of the data
itself.
- Start Microsoft Excel.
- Type the following data:
A1 | 1234 |
A2 | 3.7 |
A3 | 45.01 |
A4 | 15.75 |
- For each of the following cells, on the Format menu, click Cells. In the Category list, click Number. Type the following numbers in the Decimal Places box, and then click OK:
Note that the numbers appear in the following format:
A1 | 1234.000 |
A2 | 3.70 |
A3 | 45.0100 |
A4 | 15.750 |
- On the File menu, click Save As. In the File Name box, type Import. In the Save As Type list, click Text (Tab delimited)(*.txt). Click Save, and then click OK.
- On the File menu, click Exit. Click No because the file was saved in the previous step.
NOTE: If you receive a warning that says "The selected file type does not support workbooks that contain multiple sheets," click OK.
Importing the Data
This section shows you how to import the data into Microsoft Access.
NOTE: The numbers in the new table will appear the same as they did in the Excel workbook.
- Start Microsoft Access.
- Open the sample database, Northwind.mdb.
- On the File menu, point to Get External Data, and then click Import.
- In the Files Of Type list, click Text files (*.txt;*.csv;*.tab;*.asc). Click Import.txt, and then click Import.
- On the first screen of the Text Import Wizard, click Delimited, and then click Next.
- When the Text Import Wizard asks you to Choose Your Delimeter, click the Tab option, and then click Next.
- Click Next again to skip the question about a New or Existing table, and then click Next.
- Type TextNumbers in the Field Name box and in the Data Type list, click Text. Click Next.
- On the fifth screen of the Text Import Wizard, click No Primary Key. Click Finish, and then click OK.
Using the Numeric Value of the Data
The following example shows how you can use the
CVar() function to have the contents of the field be evaluated as a Number data type rather than as a Text data type. Because the data is in a text format, you may not receive the expected results when running the query, unless you use the numeric value of the number.
- Create the following query:
Query: qryImport
---------------------------------------
Type: Make Table Query
Field: RealNumbers: CVar([TextNumbers])
Criteria: >20
- On the Query menu, click Run.
- On the File menu, click Save. Type qryImport, and then click OK.
- On the File menu, click Close.
NOTE: The trailing zeros will be lost if you perform a calculation on the
number. For example, the trailing zeros will be lost if you change the
field in Step 1 to the following:
Field: RealNumbers: CVar([TextNumbers])*1