Problem: One of my two table-controls shows single appointment doubled.
The calendar is in two tables “calendar” for entries and “members” for participants. They are linked by the field “SCcID”. The form should allow to search for a type or location, show the entries and multiple participants
Created a query which basically works but when I run it It lists the date entry twice while 2 participants
SELECT “SCcalendar”., “SCcmembers”. FROM “SCcalendar”, “SCcmembers”, “SCcfilter” WHERE “SCcalendar”.“SCcID” = “SCcmembers”.“SCcID” AND UPPER ( “SCcalendar”.“SCclocation” ) LIKE UPPER ( “SCcfilter”.“Location” || ‘%’ ) OR “SCcalendar”.“SCcID” = “SCcmembers”.“SCcID” AND UPPER ( “SCcalendar”.“SCctype” ) LIKE UPPER ( “SCcfilter”.“Purpose” || ‘%’ )
On the subform linked to the query I have two table controls. As in the query it shows the appointment entry twice, the participants correct.
I had it working correctly, then experimented and now am unable to get it back!