almir_7@yahoo.com (Almir) wrote in message news:<72ddae16.0401220806.633cb964@posting.google. com>...[color=blue]
> "Squirrel" <wiseowl@covad.net> wrote in message news:<83ea$400f94ae$44a56575$7373@msgid.meganewsse rvers.com>...[color=green]
> > If you have a parent/child relationship between each of these tables, could
> > you
> > accomplish your goals by using subforms?
> >
> > -L
> >[/color]
> No i can't use subforms, i already have subforms on each one of those
> calling forms.[/color]
Looks like you might have to do something like a DCount to see if the
ID in question is already in your "child" table (I'm using "child"
somewhat loosely here... in the "subsequent" tables you'd carry the
Unique ID to). If it doesn't exist, you could open the form in
question and insert a new value. Just open the next form and assign
the value from the calling form...
In Form1
DoCmd.OpenForm "Form2"
Forms!Form2!IDField=Forms!Form1!IDField
or some such thing.