getting data from a form to a sub form

  • Thread starter Thread starter ifoundgoldbug
  • Start date Start date
I

ifoundgoldbug

in my form[work order] I have a field called [Build Com Date] and in
my sub form [PMTable] ihave a field called [PMDate]. i would like
[pmdate] = [build com date] + 90. is there a simple way to do this?

thank you for your time

Gold Bug
 
In the after update event of [Build Com Date] you can put the following

Forms![work order]![PMTable].form![pmdate] = Me![build com date] + 90
 

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

Back
Top