So what is exactly your problem? You are joining successfully on SpoolN and JointN, I can only find an ISO N in your tab_data, but cant find anything in VBA refering to ISO N?
FYI: expecting help within 45 minutes, is more like a service you would pay for... not like some online free forum
Dear Namliam,
thanks for replay the issue was that i can filter with spool N but the code did not allow me to filter with joint N & that was my issue (see red highlighted).
not that ISO N was only mistake from me.
Private Sub cmdJointN_AfterUpdate()
Dim geog As Integer, fnd As Boolean
Dim rsMVF As DAO.Recordset
If Me.RecordsetClone.RecordCount > 0 Then
Me.RecordsetClone.MoveFirst
geog = Me.cmdJointN.Column(0)
Do While Not Me.RecordsetClone.EOF
Set rsMVF = Me.RecordsetClone("JointN").Value
fnd = False
rsMVF.MoveFirst
Do While Not rsMVF.EOF
If geog = rsMVF![Value].Value Then
fnd = True
End If
rsMVF.MoveNext
Loop
rsMVF.Close
Me.RecordsetClone.Edit
If fnd <> True Then
Me.RecordsetClone("Active") = False
End If
Me.RecordsetClone.Update
Me.RecordsetClone.MoveNext
Loop
If IsNull(Me.Filter) Or Me.Filter = "" Then
Me.Filter = "Active = True"
Else
Me.Filter = Me.Filter & " AND Active = True"
End If
Me.FilterOn = True
End If
End Sub