I have a checkbox in my subform.
if I check it true I want it to copy the values of a field in the form to a field in the subform
Why isnt this as easy as
Private Sub copy_caller_Click()
If caller_copy = True Then
subformcaller.Value = formcaller.Value
End If
End Sub
TIA
if I check it true I want it to copy the values of a field in the form to a field in the subform
Why isnt this as easy as
Private Sub copy_caller_Click()
If caller_copy = True Then
subformcaller.Value = formcaller.Value
End If
End Sub
TIA