Need help with automatically filling in related fields

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

Guest

I have a subform where it lists names of patients associated to Dr on main
form. When entering a date on the first patient. I would like to have the
other dates on the same field for the other patients on the subform. Some
Drs may have one to numerous patients listed. Can this be done? Don't want
to enter the same date numerous times. Can this be done simply without code?
Thank you in advance for any help you can give me.
 
Well, ctrl+' will copy the last entry for the field....

So, you could use that key sequence, and not have to write any code....
Can this be done simply without code?

As mentioned, the above would a code free approach.

For a code approach.....

Use the after update event of the contorl.....


If IsNull(Me.PatientDate) = False Then
Me.PatientDate.DefaultValue = """" & Me.PatientDate & """"
End If



Can this be done simply without code?



Hum, I would go
 

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