Hello all,
I'm having trouble trying to get what I'd like.
In an ideal world, on my continuous form, I will have an unbound textbox that gets the count of each records ID in a different table.
Background info:
1) I have two tables, table1 and table2.
2) table2 is joined to table1 with a (1 to many) relation.
3) table1 is bound to a continuous form.
4) unbound textbox on continuous form pulls count of how many records are related in table2.
So I'm guessing it would be something like....
ThanksCode:txtbox1 = Dcount(IDField, table2, IDField FROM table1 = IDField FROM table2)