I have been working on a measure to try and concatenate multiple string values into one based on a unique ID. If the values were all in the same table, I would do the following:
Column =
CONCATENATEX(FILTER(SUMMARIZE(Table1,Table1[Case Number],Table1[Field Type]),[Case Number]=EARLIER(Table1[Case Number])),[Field Type],"-")

However I am trying to do this across tables. The unique value is in lets say TableA, and the values I am looking to concatenate are in TableB. How Can I do the same thing shown above, but with values pulled from a different table?
------------------------------
Chase S
------------------------------