O
OldManEd
I have 2 tables, (1) group table and (2) member table. There is a one to
many relationship: each group has several members in member tables but no
member belongs to more than one group. The linking relationship is a group
ID.
I have created a function that uses this group ID to find all the records in
the members table with the same group ID and create a string of data from
each record and then concatenating a field value. This function works in the
VBA intermediate window when I manually type in an ID:
Function(ID as variant) as variant
code
End Function
Now I want to call this function in a report. How do I proceed?
many relationship: each group has several members in member tables but no
member belongs to more than one group. The linking relationship is a group
ID.
I have created a function that uses this group ID to find all the records in
the members table with the same group ID and create a string of data from
each record and then concatenating a field value. This function works in the
VBA intermediate window when I manually type in an ID:
Function(ID as variant) as variant
code
End Function
Now I want to call this function in a report. How do I proceed?