CONCATENATEX¶join string¶Shops table: Id, Shop, Country, Region Products table: ProductType, ProductQuantity, ShopIdCreate a Table to show the Total ProductQuantity by Country and Region, and all the product types.ConcatenatedProductType = CALCULATE( CONCATENATEX( VALUES(Products[ProductType]), Products[ProductType], ", " ), FILTER( Products, RELATED(Shops[Id]) = Products[ShopId] ) )