looking through StackOverflow I was able to find what I was looking for from:
Concatenating multiple rows into single line in MS Access [duplicate]
Which utilizes the function from:
Concatenate values from related records
But what I can't figure out is how to not return duplicate values from the rows that are being concatenated. Examples...I want it to return for Customer1:
PartA, PartB, PartF
Not...
PartA, PartA, PartA, PartB, PartB, PartF
I am not honestly sure on how to make this custom function work like that. My query is...
SELECT DISTINCT PART_NUMBER,
ConcatRelated("SUPPLIER_NAME","tbl_supplier_list",
"PART_NUMBER=""" & [PART_NUMBER] & """")
FROM tbl_supplier_list;`