dominicgingras
Technical User
I have one table with customer and one table with "calls".
I want to show on the customer form all the tolal value($) of the call that that person made AND that are not paid(yes-no field).
I tried this on the form update event but its look like if my logic is wrong.. maybe its to late... its 3:30 downhere
Private Sub Form_Current()
Crédit = DSum("[Tarif]", "Appels", "[Forms]![Clients].[ClientID] and [Appels]![TransportPayé] = False"
End Sub
I want to show on the customer form all the tolal value($) of the call that that person made AND that are not paid(yes-no field).
I tried this on the form update event but its look like if my logic is wrong.. maybe its to late... its 3:30 downhere
Private Sub Form_Current()
Crédit = DSum("[Tarif]", "Appels", "[Forms]![Clients].[ClientID] and [Appels]![TransportPayé] = False"
End Sub