I am trying to get a distinct Shot field. However the other field knocks it on the head if in the query. The other field has to be there so how does one rectify the problem? Thanks.
Me.L12.RowSource = "SELECT DISTINCT TXCLIPS.Shot, TXClips.NName" _
& " FROM (TXMASTERS INNER JOIN TXCLIPS ON TXMASTERS.ID1=TXCLIPS.ID1)" _
& "WHERE TXCLIPS.NName & ' ' Like '*" & Replace(Me!LNAME11.Caption, "'", "''") & "*' " _
& "AND ((Not (TXCLIPS.Shot) Is Null))" _
& "ORDER BY 2
Me.L12.RowSource = "SELECT DISTINCT TXCLIPS.Shot, TXClips.NName" _
& " FROM (TXMASTERS INNER JOIN TXCLIPS ON TXMASTERS.ID1=TXCLIPS.ID1)" _
& "WHERE TXCLIPS.NName & ' ' Like '*" & Replace(Me!LNAME11.Caption, "'", "''") & "*' " _
& "AND ((Not (TXCLIPS.Shot) Is Null))" _
& "ORDER BY 2