I have recieved some assistance from some of you all but... I will be as clear as possible. To simplify it I have two tables with two fields that will have some repeating data and some unique data. Here is the picture.
table A table b
num let num let
1 a 1 a
1 a 1 a
1 a 2 a
1 a 2 b
2 a 3 c
2 b
3 c
4 c
The result I would expect to see is
1a , 1a and 4c
I have created a query that links the two num and let fields but that gives me all the data from Table A.
table A table b
num let num let
1 a 1 a
1 a 1 a
1 a 2 a
1 a 2 b
2 a 3 c
2 b
3 c
4 c
The result I would expect to see is
1a , 1a and 4c
I have created a query that links the two num and let fields but that gives me all the data from Table A.