Ive seen similar posts on this but none of the solutions seems to work for me. Im trying to test if a recordset is null or not. If it is i don't want another recordset to have a value for STU_TU_CODE else i do want it to have a value. I have a few variations, the latest one is below and has an error "object required"
If rs2 Is Null Then
rs!STU_TU_CODE = " "
Else
rs.Edit
rs!STU_TU_CODE = rs2("TU_CODE")
rs.Update
End If
Any help please?
If rs2 Is Null Then
rs!STU_TU_CODE = " "
Else
rs.Edit
rs!STU_TU_CODE = rs2("TU_CODE")
rs.Update
End If
Any help please?