I am steping through a file one line at a time. 2 samples of data I want to match are:
1.
(x) Testosterone Enanthate(x) 200mg
IM injection ( ) 250mg
( ) 300mg
Patient's maintenance schedule:
(x) Every two weeks
( ) Every three weeks
( ) Every month
( ) Every three days
and
2.
(x) Testosterone...
I have the following code:
' Find the record that matches the control.
Dim rs As DAO.Recordset
Set rs = Me.Recordset.Clone
rs.FindFirst "[LastFour] = '" & Me![Combo54] & "'"
Me.Bookmark = rs.Bookmark
MsgBox "Record not found"
End If
rs.Close
half the time it...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.