Copy From Parent past into Sub Fm

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a sub form that I would like to put a cmd_btn on so that the user does
not need to copy data from the parent form.

I would like to copy the following from the parent form:

Form: Dep Loss add
Field: DEPInDate

And Past it into the following sub form:

Form: DEP Loss Add Sub Fm
Field: DOE

Any help would be great.
 
KAnoe,

I think code like this will do what you ask.
Me.DOE = Me.Parent!DEPInDate

Having said that, what you are asking is very unusual. Normally it is
not necessary or desirable to duplicate data in this way. It may be
worthwhile to review your design.
 
I know but the Parent data can change so I need to keep a record of the old
data. This only happens on abour 10% of my records

Thanks for your help I will give it a shot.

Keith
 
Back
Top