i have 2 tables which are linked together
table 1:
[Event] { EventID, EventName, CustomerID }
table 2:
[Customer] { CustomerID, CustomerFirstNa me, CustomerLastNam e, AGE }
they are join by CustomerID obvouisly, but i want a report that shows multiple customers in one textbox for one Event.
I.E. Report would look like:
Event: Saturday Customers: Charlie Brown, Alex Maine, Roger Wells
Event: Monday Customers: Dr. Watson, Dr. Green
i would like them to be joined by commas as well, i haven't been able to come up with any function that will combine several rows together of linked ids
any thoughts
table 1:
[Event] { EventID, EventName, CustomerID }
table 2:
[Customer] { CustomerID, CustomerFirstNa me, CustomerLastNam e, AGE }
they are join by CustomerID obvouisly, but i want a report that shows multiple customers in one textbox for one Event.
I.E. Report would look like:
Event: Saturday Customers: Charlie Brown, Alex Maine, Roger Wells
Event: Monday Customers: Dr. Watson, Dr. Green
i would like them to be joined by commas as well, i haven't been able to come up with any function that will combine several rows together of linked ids
any thoughts
Comment