Access VBA
This category holds articles regarding Access VBA, but also general things I come accross Access and its usage in companies.
If you want to join two tables in MS Access using the LIKE operator you will fail receiving an error message stating the following.
"JOIN expression not supported."
MS Access SQL
The SQL producing above error looks as follows.
1
2
You can fix this by changing the SQL to define the JOIN condition in the WHERE part of a statement.
- Hits: 9098
If you have to delete all records from a table using Access VBA DAO, the following method might be helpful.
- Hits: 2944
If you have to determine the total count of records in a Recordset, you can use the RecordCount property.
But first you have to move to the last record in the Recordset by using the MoveLast method.
Source Code
1
2
3
4
- Hits: 3322
Subcategories
Access VBA DAO Article Count: 2
Page 2 of 3