I started playing with the noodles and connected the table to a query and it gave me what I was looking for. Kind of shocked myself.
SELECT Baseline.MDS, countCBI.CBI
FROM Baseline LEFT JOIN countCBI ON Baseline.MDS = countCBI.MDS
GROUP BY Baseline.MDS, countCBI.CBI;
Thanks everyone for...