Copy from one record to the next

gbanks

Registered User.
Local time
Today, 03:40
Joined
Feb 9, 2000
Messages
161
In the attached db I have a form I use in datasheet view to show data. I have an attached subform that the user updates. The user opens the subform by clicking on the + sign to open the subform, the updates the fields clicks the + sign again to close the form. Then repeats for the next record. What I would like to happen is when the user clicks the + sign again to go to a new form is to have the data from the fields below to auto popualte the new form instance. I could do this with a continuous form and it worked but the users would like to see the data in a datasheet design. Is this possible? Thanks...




Me("Type").DefaultValue = """" & Me("Type").Value & """"
Me("Severity").DefaultValue = """" & Me("Severity").Value & """"
Me("EventStatus").DefaultValue = """" & Me("EventStatus").Value & """"
Me("AdminDate").DefaultValue = """" & Me("AdminDate").Value & """"
 

Attachments

Last edited:
And the difference between datasheet and a continuous form is?

You can make your continuous form look the same as datasheet view, so how would the users know?
 

Users who are viewing this thread

Back
Top Bottom