A
a
Thank You
If I have 2 forms
I want to open second form with condition
If txtgroup in the first form equal txtgroup in the second from
I want the answer with txtgroup value
Text value
Number Value
Date Value
I have this code for Numeric value
===============
If DCount("[IDClient]", "tblClient", "[IDClient] = " & Me.IDClient) > 0 Then
'code here to open frm2ndform
DoCmd.OpenForm "frmclient", , , "([IDClient]=" & Me.IDClient & ")"
End If
=================
If I have 2 forms
I want to open second form with condition
If txtgroup in the first form equal txtgroup in the second from
I want the answer with txtgroup value
Text value
Number Value
Date Value
I have this code for Numeric value
===============
If DCount("[IDClient]", "tblClient", "[IDClient] = " & Me.IDClient) > 0 Then
'code here to open frm2ndform
DoCmd.OpenForm "frmclient", , , "([IDClient]=" & Me.IDClient & ")"
End If
=================