flying linus
Registered User.
- Local time
- Today, 02:15
- Joined
- Oct 1, 2004
- Messages
- 33
I have a table that lists single failures, I then run an append query to create a table of dual failures of every combo of the single failures. I am trying to create a form that lists only the dual failures associated with a particular failure and here is the criteria I have below:
stLinkCriteria = "[1st_Fail_ID]=" & "'" & Me![Failure_ID] & "'" And "[2nd_Fail_ID]=" & "'" & Me![Failure_ID] & "'"
All field in the above statement are text fields.
I keep getting a type mismatch error. I am not an access developer and learning on my own, so any help will be appreciated.
stLinkCriteria = "[1st_Fail_ID]=" & "'" & Me![Failure_ID] & "'" And "[2nd_Fail_ID]=" & "'" & Me![Failure_ID] & "'"
All field in the above statement are text fields.
I keep getting a type mismatch error. I am not an access developer and learning on my own, so any help will be appreciated.