How can i print values on the word document from access table,there are more than 1 records for a single person
Here recordcount holds 4 values,bt it is not beng printed on the word doc,it is coming out of the procedure
If rs.RecordCount <> 0 Then
If Not IsNull(rs!Name) Then
WordDocument.Edit "Nm"
strEntr = rs!Name
strEntr = AppWord.set_Mixcase(strEntr)
WordDocument.Insert strEntr
End If
If Not IsNull(rs!BANK) Then
WordDocument.Edit "BnkNm"
strEntr = rs!BANK
strEntr = AppWord.set_Mixcase(strEntr)
WordDocument.Insert strEntr
End If
End If
Please help