ACC: How to Duplicate Microsoft Excel Fill Down Functionality
ID: Q103192
|
The information in this article applies to:
-
Microsoft Access versions 1.0, 1.1, 2.0, 7.0, 97
SUMMARY
Moderate: Requires basic macro, coding, and interoperability skills.
This article describes how to duplicate the Microsoft Excel FillDown method
in Microsoft Access.
MORE INFORMATION
In Microsoft Access, you can use an update query to achieve fill down
functionality. The following example creates a copy of the Orders
table in the sample database Northwind.mdb (or NWIND.MDB in versions 1.x
and 2.0) before performing the fill down functionality to make every
shipping charge $10.00.
- Open the sample database Northwind.mdb (or NWIND.MDB).
- Select the Orders table, and on the Edit menu, click Copy.
- On the Edit menu, click Paste. Type Orders1 for the new table name,
and then click OK.
- Create a new query based on the Orders1 table.
- Drag the Freight field to the QBE grid.
- On the Query menu, click Update Query (or Update in Microsoft Access
7.0 or earlier).
- On the Update To line in the Freight column of the QBE grid, type
$10.00, and then press the TAB key.
- On the Query menu, click Run. Microsoft Access informs you that
830 records will be updated (1078 in versions 1.x and 2.0). Click OK.
- Open the Orders1 table. Note that all the records have a Freight value
of $10.00.
Keywords : kbusage QryMktbl
Version : 1.0 1.1 2.0 7.0 97
Platform : WINDOWS
Issue type : kbhowto
|