About 3,620,000 results
Open links in new tab
  1. ms access - How to retrieve data using a form, which refreshes

    Jul 28, 2014 · I'm trying to use a form to retrieve data from a table - contact details for people at different companies. My goal is to use the form to retrieve contact information for one specific person at a time, by first selecting company, then person.

  2. How to retrieve specific records from data table in access with …

    Aug 31, 2019 · Here is the code: Private Sub Form_Current() Dim db As Database. Dim rs As Recordset. Dim Arr As String. Dim i As Integer. Dim MyQuery As String. MyQuery = "select *" & "from [TblParticipants]" & "where [ParticipantID] ='" & Me.IDtxtBox.Value & "'" Set db = CurrentDb. Set rs = db.OpenRecordset(MyQuery) On Error GoTo ErrorHandler.

  3. Using the Criteria Field in Microsoft Access

    Jan 11, 2019 · Many of us use Microsoft Access to extract data from Banner or other enterprise systems, or to store data that doesn’t fit in our enterprise system. This tip provides an overview of the criteria field in Access queries, including Flexible Criteria, Date …

  4. MS Access - Pull data from one form to another?

    Jun 20, 2019 · If you do need to close the My Profile form while the Today's Report form is open you can 'push' data from one form to another by passing it as the OpenArgs argument of the OpenForm method. You'll find examples in Args.zip in my public databases folder at:

  5. Examples of query criteria - Microsoft Support

    A query criterion is an expression that Access compares to query field values to determine whether to include the record that contains each value. For example, = "Chicago" is an expression that Access can compare to values in a text field in a query.

  6. Access - Using query to pull fields from 2 tables - Not using any ...

    Aug 19, 2024 · Controls in the form bound to columns from the referenced tables should be made read-only by setting their Enabled property to False, and their Locked property to True. You'll find an example in the third form in the section on 'entering data via a form/subforms' in my DatabaseBasics demo, to which I referred you earlier. In this the controls ...

  7. Accessing data in a table/query from VBA | Access World Forums

    Nov 19, 2003 · The simplest solution is to learn how to make queries that join tables. You can join the two tables on their common identifier and use the query as the ControlSource for your Form or Report. No coding is necessary.

  8. Extract data from a record in a DAO Recordset | Microsoft Learn

    Jan 21, 2022 · The following code example uses an SQL statement to retrieve three fields from a table called Employees into a Recordset object. It then uses the GetRows method to retrieve the first three records of the Recordset, and it stores the selected records in a two-dimensional array.

  9. How to retrieve values from a query in VBA and assign them as variables ...

    Jul 15, 2020 · To read one single value from a query or table, you can also use the DLookup function.

  10. Use a form to specify the criteria for a query - Microsoft 365 Apps

    Aug 19, 2024 · The QBF form resembles a data entry form that has fields that match the fields in a table. A table that has fields for Name, Address, City, State, and ZIP Code can have a QBF form that has corresponding fields. To select certain records, you can enter any combination of search criteria in the form.

  11. Some results have been removed
Refresh