You may have seen this but I thought I would pass it along to you.
It appears to be what you are trying to do.
Sub DeleteDuplicateShippers()
Dim dbsNorthwind As DAO.Database
Dim rstShippers As DAO.Recordset
Dim strSQL As String
Dim strName As String
On Error GoTo...
Check for spaces in the data.
And for some reason I have seen in WORD that text will not completely align to the left.
Also select all of your text boxes, click left align in format off then click it back on again.
Dale
This works.
Every time you hit the tab key it makes a new record and 1 is stored in the Qty field.
Private Sub numTest_GotFocus()
Me.numTest = 1
Me.Testtext.SetFocus
DoCmd.GoToRecord , , acNewRec
End Sub
Dale
Quote:
Originally Posted by rzw0wr
Also I never use inner or out joins in a relationship.
Do that in a query.
When you set up table relationships, these ARE joins.
Never said they weren't.
I said I never use these types in a relationship. I...
Question, How would Access know if something is missing?
You can compare 2 tables for missing data in 1 table.
You need something to compare to.
Do you see what I am saying.
If the data is not there Access does not know this.
Example:
If you have 4 steps to a process and 3 people have not gone...