Gotorecord

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

Guest

I have created a form with 3 fields (lname,fname,mi). I want to fill in the form and go to another form with all the fields filled in. I have attempted to creat a macro with the "gotorecord" command assigned to a button. I am having trouble having the form pull the second form correctly. I think it has to do the the offset field. Can anyone help? Thanks in advance.
 
I have created a form with 3 fields (lname,fname,mi). I want to fill in the form and go to another form with all the fields filled in. I have attempted to creat a macro with the "gotorecord" command assigned to a button. I am having trouble having the form pull the second form correctly. I think it has to do the the offset field. Can anyone help? Thanks in advance.

Note that data is not stored in Forms. It's stored in Tables; and in a
relational database you should store data only *once* - that is, if
you enter a first and last name into a People table, that's the *only*
table where that information should be stored.

Could you explain a bit more about what you're trying to accomplish,
and how your tables are structured? It's likely that a Form and a
Subform will be the best approach, but I'm not sure what you want!
 
Back
Top