Auto Populate

B

Beeyen

Good Day

I am trying to auto populate a field in one subform tab with the
information, which happens to be date and time, in the field of from another
subform tab and was hoping I could received some assistance.

In a subform tab called Production I have a field called Production
Completed which when selected through a radio button enters the current date
with the following code:

Private Sub ProductionCompletedButton_AfterUpdate()
If Me.ProductionCompletedButton.Value = True Then
Me.[ProductionCompleted] = Now()
Else
Me.[ProductionCompleted] = Null

End If

End Sub

In another subform tab called Quality Assurance, I have a field called
Received from Production in which I would like to have auto populated from
the field Production Completed in the Production tab.

Thanks for your assistance
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top