Trying to have a form open only if the recordcount is > 1.
does this look right or am I off base. The field Im concerned with is a claim# field. If there is more than one claim then an additional form should open if theres more than one claim, thats why Im using the recordcount.
If Me.RecordsetClone.RecordCount > 1 Then
DoCmd.OpenForm stDocName2, , , stLinkCriteria2
End If
does this look right or am I off base. The field Im concerned with is a claim# field. If there is more than one claim then an additional form should open if theres more than one claim, thats why Im using the recordcount.
If Me.RecordsetClone.RecordCount > 1 Then
DoCmd.OpenForm stDocName2, , , stLinkCriteria2
End If