C
coyote
Thanks for reading my post
The following If statement never 'finds' a record in my DB, while there are
records which satisfy the conditions....
If (((rsTMPMedals("Division") = """ & strDivision & """) And
(rsTMPMedals("GroupID") = strGroupID)) _
And ((rsTMPMedals("ConID") = strConID) And (rsTMPMedals("EntryID") <>
strEntryID))) Then
Have tried reducing the parens, but thought it might only be able to
evaluate the And's with two items at a time, so I added them...
The following If statement never 'finds' a record in my DB, while there are
records which satisfy the conditions....
If (((rsTMPMedals("Division") = """ & strDivision & """) And
(rsTMPMedals("GroupID") = strGroupID)) _
And ((rsTMPMedals("ConID") = strConID) And (rsTMPMedals("EntryID") <>
strEntryID))) Then
Have tried reducing the parens, but thought it might only be able to
evaluate the And's with two items at a time, so I added them...